summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/innodb_bug52199.test
blob: b95cdef3fdd6f11f2e40543fd9d330e799f8489b (plain)
1
2
3
4
5
6
7
8
9

let collation=utf32_bin;
--source include/have_collation.inc

CREATE TABLE bug52199 (a INT NOT NULL,
b CHAR(125) CHARACTER SET utf32 COLLATE utf32_bin NOT NULL
)ENGINE=InnoDB;
CREATE UNIQUE INDEX idx ON bug52199(a);
DROP TABLE bug52199;