~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2008-12-06 22:41:03 UTC
  • mto: (656.1.7 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: monty@inaugust.com-20081206224103-jdouqwt9hb0f01y1
Moved non-working tests into broken suite for easier running of working tests.

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;