diff options
author | unknown <monty@mashka.mysql.fi> | 2003-03-16 16:30:54 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-03-16 16:30:54 +0200 |
commit | bfbb0ad69df21854f2db5fb2b9c708b2a576929e (patch) | |
tree | f6d63b9728c1157c31c1f74bbe32bc1e50de79b8 /mysql-test/t | |
parent | f08688c5ee2aed851f92393b06b1b704ef0dd118 (diff) | |
parent | 9681f4a8cd242e3828f211e0bed5235e70ee5f4e (diff) | |
download | mariadb-git-bfbb0ad69df21854f2db5fb2b9c708b2a576929e.tar.gz |
Merge bk-internal.mysql.com:/home/bk/mysql-4.0
into mashka.mysql.fi:/home/my/mysql-4.0
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/create.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/create.test b/mysql-test/t/create.test index bb0d6dc0d64..7d566cb89ac 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -55,6 +55,14 @@ create table test_$1.test2$ (a int); drop table test_$1.test2$; drop database test_$1; +--error 1103 +create table `` (a int); +--error 1103 +drop table if exists ``; +--error 1166 +create table t1 (`` int); +drop table if exists t1; + # # Test of CREATE ... SELECT with indexes # |