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

This commit is contained in:
Daniel Nichter
2011-10-13 11:57:32 -06:00
parent 675efca692
commit dfcb7dc157
6 changed files with 41 additions and 166 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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');