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