mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / suite / innodb / r / innodb_bug46000.result
blobccf7cc56859f3334f1c2eb6fb7b4fc488b1eb8be
1 create table bug46000(`id` int,key `GEN_CLUST_INDEX`(`id`))engine=innodb;
2 ERROR HY000: Can't create table 'test.bug46000' (errno: -1)
3 create table bug46000(`id` int, key `GEN_clust_INDEX`(`id`))engine=innodb;
4 ERROR HY000: Can't create table 'test.bug46000' (errno: -1)
5 show warnings;
6 Level   Code    Message
7 Warning 1005    Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
8 Error   1005    Can't create table 'test.bug46000' (errno: -1)
9 create table bug46000(id int) engine=innodb;
10 create index GEN_CLUST_INDEX on bug46000(id);
11 ERROR HY000: Can't create table '#sql-temporary' (errno: -1)
12 show warnings;
13 Level   Code    Message
14 Warning 1005    Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
15 Error   1005    Can't create table '#sql-temporary' (errno: -1)
16 create index idx on bug46000(id);
17 drop table bug46000;