summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <monty@mashka.mysql.fi>2003-03-16 16:30:54 +0200
committerunknown <monty@mashka.mysql.fi>2003-03-16 16:30:54 +0200
commitbfbb0ad69df21854f2db5fb2b9c708b2a576929e (patch)
treef6d63b9728c1157c31c1f74bbe32bc1e50de79b8 /mysql-test/t
parentf08688c5ee2aed851f92393b06b1b704ef0dd118 (diff)
parent9681f4a8cd242e3828f211e0bed5235e70ee5f4e (diff)
downloadmariadb-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.test8
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
#