diff options
Diffstat (limited to 'mysql-test/main/unique.result')
-rw-r--r-- | mysql-test/main/unique.result | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/main/unique.result b/mysql-test/main/unique.result index fbd937f0434..e982e1c4163 100644 --- a/mysql-test/main/unique.result +++ b/mysql-test/main/unique.result @@ -1,3 +1,8 @@ +CREATE TABLE t1 (pk INT AUTO_INCREMENT PRIMARY KEY, a varchar(30000), UNIQUE (a)) ENGINE=innodb; +INSERT INTO t1 (a) VALUES (20),(NULL),(NULL),(NULL),(NULL),(NULL),(NULL); +SELECT * FROM t1 WHERE a BETWEEN '1' AND '100'; +pk a +DROP TABLE t1; CREATE TABLE t2 (n BLOB, UNIQUE(n)); INSERT INTO t2 VALUES (1); DELETE FROM t2 WHERE n = 1; |