diff options
author | monty@mashka.mysql.fi <> | 2003-11-18 17:28:00 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-11-18 17:28:00 +0200 |
commit | c9ae785bc30c01907dac4776b16450c21df8864c (patch) | |
tree | b2829b6021df3f4b18bf81039b7bc065f4edb5b7 /mysql-test/t/create.test | |
parent | e5d75fb984162be32386ec32a177e29661463e55 (diff) | |
download | mariadb-git-c9ae785bc30c01907dac4776b16450c21df8864c.tar.gz |
Delete duplicate error message names
Diffstat (limited to 'mysql-test/t/create.test')
-rw-r--r-- | mysql-test/t/create.test | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test index 5d61d7b18f2..0c1280751bc 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -40,9 +40,9 @@ create table t1 (ordid int(8) not null auto_increment, ord varchar(50) not null -- error 1044,1 create table not_existing_database.test (a int); ---error 1279 +--error 1103 create table `a/a` (a int); ---error 1279 +--error 1103 create table `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa int); --error 1059 create table a (`aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` int); @@ -66,13 +66,13 @@ create table test_$1.test2$ (a int); drop table test_$1.test2$; drop database test_$1; ---error 1279 +--error 1103 create table `` (a int); ---error 1279 +--error 1103 drop table if exists ``; ---error 1281 +--error 1166 create table t1 (`` int); ---error 1282 +--error 1279 create table t1 (i int, index `` (i)); # @@ -262,7 +262,7 @@ create table non_existing_database.t1 like t1; create table t3 like non_existing_table; --error 1050 create temporary table t3 like t1; ---error 1279 +--error 1103 create table t3 like `a/a`; drop table t1, t2, t3; drop table t3; |