mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
f5692f21f9
the InnoDB Plugin tests are now in mysql-test/suite/innodb_plugin. Move InnoDB tests to the innodb suite at mysql-test/suite/innodb.
4 lines
195 B
Text
4 lines
195 B
Text
CREATE TABLE bug41904 (id INT PRIMARY KEY, uniquecol CHAR(15)) ENGINE=InnoDB;
|
|
INSERT INTO bug41904 VALUES (1,NULL), (2,NULL);
|
|
CREATE UNIQUE INDEX ui ON bug41904 (uniquecol);
|
|
DROP TABLE bug41904;
|