~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: 2010-10-20 20:25:52 UTC
  • mto: (1864.2.1 merge)
  • mto: This revision was merged to the branch mainline in revision 1865.
  • Revision ID: brian@tangent.org-20101020202552-51y5sz5ledoxbp7t
Add support for --with-valgrind

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;