Move oversize_chunks.t tests into basics.t and remove oversize_chunks.t. Remove unused sample files.

This commit is contained in:
Daniel Nichter
2011-10-20 11:54:28 -06:00
parent e3bc2496c2
commit 41821380b6
14 changed files with 83 additions and 154 deletions

View File

@@ -7,6 +7,27 @@ create table t (
);
insert into t values
(1),(2),(3),
(10),(11),(12),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(24),
(101),(102),(103);
(1),
(2),
(3),
(10),
(11),
(12),
-- 15 dupes
(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),(13),
(24),
(101),
(102),
(103);
create table t2 (
c char,
index (c)
);
insert into t2 values
('a'), ('a'), ('a'), ('a'), ('a'), ('a'), ('a'), ('b'), ('b'), ('b'), ('c'),
('c'), ('d'), ('d'), ('d'), ('d'),
('e'), ('f'), ('g');