diff options
Diffstat (limited to 'mysql-test/t/create.test')
-rw-r--r-- | mysql-test/t/create.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test index ad8f733ca4f..a5224cd0318 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -33,7 +33,8 @@ drop table if exists t1; !$1171 create table t1 (ordid int(8), primary key (ordid)); !$1121 create table t1 (ordid int(8), unique (ordid)) type=isam; -!$1044 create table not_existing_database.test (a int); +-- error 1044,1 +create table not_existing_database.test (a int); !$1103 create table `a/a` (a int); !$1103 create table `aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` (aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa int); !$1059 create table a (`aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa` int); |