mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-18 01:33:14 +00:00
Move issue_21. tests into basics.t and remove issue_21.t. Remove other unused sample files.
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
DATABASE TABLE CHUNK HOST ENGINE COUNT CHECKSUM TIME WAIT STAT LAG
|
||||
test issue_21 0 127.0.0.1 InnoDB 5 b88b4eff 0 NULL NULL NULL
|
@@ -1,9 +0,0 @@
|
||||
DATABASE TABLE CHUNK HOST ENGINE COUNT CHECKSUM TIME WAIT STAT LAG
|
||||
test ascii 0 127.1 MyISAM 1 25e3643f 0 0 NULL NULL
|
||||
test ascii 1 127.1 MyISAM 2 1eb24fbb 0 0 NULL NULL
|
||||
test ascii 2 127.1 MyISAM 0 NULL 0 0 NULL NULL
|
||||
test ascii 3 127.1 MyISAM 2 fb3ab74d 0 0 NULL NULL
|
||||
test ascii 4 127.1 MyISAM 51 7c2180e8 0 0 NULL NULL
|
||||
test ascii 5 127.1 MyISAM 50 b65cecbd 0 0 NULL NULL
|
||||
test ascii 6 127.1 MyISAM 31 77958122 0 0 NULL NULL
|
||||
test ascii 7 127.1 MyISAM 5 3c0ef0c2 0 0 NULL NULL
|
@@ -1,7 +1,9 @@
|
||||
DROP DATABASE IF EXISTS test;
|
||||
CREATE DATABASE test;
|
||||
USE test;
|
||||
DROP TABLE IF EXISTS issue_21;
|
||||
CREATE TABLE issue_21 (
|
||||
a INT,
|
||||
b CHAR(1)
|
||||
b CHAR(1),
|
||||
UNIQUE INDEX (a)
|
||||
) ENGINE=InnoDB;
|
||||
INSERT INTO issue_21 VALUES (1,'a'),(2,'b'),(3,'c'),(4,'d'),(5,'e');
|
||||
INSERT INTO issue_21 VALUES (1,'a'),(2,'b'),(3,'c'),(4,'d'),(5,'e'),(6,'f');
|
||||
|
Reference in New Issue
Block a user