mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
21 lines
479 B
Text
21 lines
479 B
Text
|
--source include/have_innodb.inc
|
||
|
|
||
|
|
||
|
#
|
||
|
# Bug#16368875 INNODB: FAILING ASSERTION: PRIMARY_KEY_NO == -1 || PRIMARY_KEY_NO == 0
|
||
|
#
|
||
|
create table t1 (f1 tinyblob not null) engine=innodb;
|
||
|
alter table t1 add unique index (f1(255));
|
||
|
drop table t1;
|
||
|
|
||
|
create table t1 (f1 tinyblob not null) engine=innodb;
|
||
|
alter table t1 add unique index (f1(356));
|
||
|
show create table t1;
|
||
|
drop table t1;
|
||
|
|
||
|
create table t1 (f1 point not null) engine=innodb;
|
||
|
alter table t1 add unique index (f1);
|
||
|
drop table t1;
|
||
|
|
||
|
|