~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/mysql-test/innodb_bug46000.result

  • Committer: Brian Aker
  • Date: 2009-10-07 16:55:53 UTC
  • mfrom: (1161.2.1 bug444827)
  • Revision ID: brian@gaz-20091007165553-9tnp7liw1k9g6gvc
Merge Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
create table bug46000(`id` int,key `GEN_CLUST_INDEX`(`id`))engine=innodb;
2
 
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
3
 
create table bug46000(`id` int, key `GEN_clust_INDEX`(`id`))engine=innodb;
4
 
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
5
 
show warnings;
6
 
Level   Code    Message
7
 
Warning 1280    Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
8
 
Error   1280    Incorrect index name 'GEN_CLUST_INDEX'
9
 
Error   1005    Can't create table 'test.bug46000' (errno: -1)
10
 
create table bug46000(id int) engine=innodb;
11
 
create index GEN_CLUST_INDEX on bug46000(id);
12
 
ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
13
 
show warnings;
14
 
Level   Code    Message
15
 
Warning 1280    Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
16
 
Error   1280    Incorrect index name 'GEN_CLUST_INDEX'
17
 
Error   1030    Got error -1 from storage engine
18
 
create index idx on bug46000(id);
19
 
drop table bug46000;