2009-10-05 16:39:07 +05:30
|
|
|
create table bug46000(`id` int,key `GEN_CLUST_INDEX`(`id`))engine=innodb;
|
|
|
|
ERROR HY000: Can't create table 'test.bug46000' (errno: -1)
|
|
|
|
create table bug46000(`id` int, key `GEN_clust_INDEX`(`id`))engine=innodb;
|
|
|
|
ERROR HY000: Can't create table 'test.bug46000' (errno: -1)
|
2009-11-02 18:59:44 +04:00
|
|
|
show warnings;
|
2009-10-05 16:39:07 +05:30
|
|
|
Level Code Message
|
2009-11-02 18:59:44 +04:00
|
|
|
Warning 1005 Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
|
2009-10-05 16:39:07 +05:30
|
|
|
Error 1005 Can't create table 'test.bug46000' (errno: -1)
|
|
|
|
create table bug46000(id int) engine=innodb;
|
|
|
|
create index GEN_CLUST_INDEX on bug46000(id);
|
|
|
|
ERROR HY000: Can't create table '#sql-temporary' (errno: -1)
|
2009-11-02 18:59:44 +04:00
|
|
|
show warnings;
|
2009-10-05 16:39:07 +05:30
|
|
|
Level Code Message
|
2009-11-02 18:59:44 +04:00
|
|
|
Warning 1005 Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
|
2009-10-05 16:39:07 +05:30
|
|
|
Error 1005 Can't create table '#sql-temporary' (errno: -1)
|
|
|
|
create index idx on bug46000(id);
|
|
|
|
drop table bug46000;
|