mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
29a46b4cf9
layout as we always had in trees containing only the builtin 2) win\configure.js WITH_INNOBASE_STORAGE_ENGINE still works.
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;
|