summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/create-index.test
blob: e1e5b856aca67769fe634845c2bcb64889efe3e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
--source include/have_innodb.inc

--echo #
--echo # Bug #18010711	UNIQUE PREFIX INDEX ON BINARY COLUMN: FAILING
--echo # ASSERTION: FLEN == LEN
--echo #
create table t1 (f1 binary(5)) engine=innodb;
insert into t1 values ('w'), ('w');
--error ER_DUP_ENTRY
create unique index index_t1 on t1(f1(4));
drop table t1;