summaryrefslogtreecommitdiff
path: root/mysql-test/r/innodb_bug46000.result
diff options
context:
space:
mode:
authorSergey Vojtovich <svoj@sun.com>2009-11-05 17:23:50 +0400
committerSergey Vojtovich <svoj@sun.com>2009-11-05 17:23:50 +0400
commit345c79edf75f7be1a837b7a842120caa1cbfc7ff (patch)
treec5ca4c41c9f993d1d1999dd59bdbaf2107a9e335 /mysql-test/r/innodb_bug46000.result
parentced8719400333994131aac1662e95590c78271b7 (diff)
downloadmariadb-git-345c79edf75f7be1a837b7a842120caa1cbfc7ff.tar.gz
Updates for test cases from innodb-zip-ss6129.
Diffstat (limited to 'mysql-test/r/innodb_bug46000.result')
-rw-r--r--mysql-test/r/innodb_bug46000.result18
1 files changed, 10 insertions, 8 deletions
diff --git a/mysql-test/r/innodb_bug46000.result b/mysql-test/r/innodb_bug46000.result
index ccff888a48d..c8e3db8d641 100644
--- a/mysql-test/r/innodb_bug46000.result
+++ b/mysql-test/r/innodb_bug46000.result
@@ -1,17 +1,19 @@
create table bug46000(`id` int,key `GEN_CLUST_INDEX`(`id`))engine=innodb;
-ERROR HY000: Can't create table 'test.bug46000' (errno: -1)
+ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
create table bug46000(`id` int, key `GEN_clust_INDEX`(`id`))engine=innodb;
-ERROR HY000: Can't create table 'test.bug46000' (errno: -1)
-show errors;
+ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
+show warnings;
Level Code Message
-Error 1005 Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
+Warning 1280 Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
+Error 1280 Incorrect index name 'GEN_CLUST_INDEX'
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)
-show errors;
+ERROR 42000: Incorrect index name 'GEN_CLUST_INDEX'
+show warnings;
Level Code Message
-Error 1005 Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
-Error 1005 Can't create table '#sql-temporary' (errno: -1)
+Warning 1280 Cannot Create Index with name 'GEN_CLUST_INDEX'. The name is reserved for the system default primary index.
+Error 1280 Incorrect index name 'GEN_CLUST_INDEX'
+Error 1030 Got error -1 from storage engine
create index idx on bug46000(id);
drop table bug46000;