mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / innodb_plugin / t / innodb_bug41904.test
blob867af04c49069c4fa46b6071f1464bf025cf7c78
2 # Make sure http://bugs.mysql.com/41904 remains fixed.
5 -- source include/not_embedded.inc
6 -- source include/have_innodb_plugin.inc
8 CREATE TABLE bug41904 (id INT PRIMARY KEY, uniquecol CHAR(15)) ENGINE=InnoDB;
10 INSERT INTO bug41904 VALUES (1,NULL), (2,NULL);
12 CREATE UNIQUE INDEX ui ON bug41904 (uniquecol);
14 DROP TABLE bug41904;