summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb_bug46000.result
blob: 9ee0c935d71c8879d770f404d7ee11e3290094d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
create table bug46000(`id` int,key `GEN_CLUST_INDEX`(`id`))engine=innodb;
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
create table bug46000(`id` int, key `GEN_clust_INDEX`(`id`))engine=innodb;
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
show warnings;
Level	Code	Message
Warning	1280	Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
Error	1280	Incorrect index name 'GEN_CLUST_INDEX'
Error	1005	Can't create table 'test.bug46000' (errno: -1 "Internal error < 0 (Not system error)")
create table bug46000(id int) engine=innodb;
create index GEN_CLUST_INDEX on bug46000(id);
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
show warnings;
Level	Code	Message
Warning	1280	Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
Error	1280	Incorrect index name 'GEN_CLUST_INDEX'
create index idx on bug46000(id);
drop table bug46000;