mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-22 20:19:00 +00:00
Move oversize_chunks.t tests into basics.t and remove oversize_chunks.t. Remove unused sample files.
This commit is contained in:
@@ -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');
|
||||
|
Reference in New Issue
Block a user