diff options
author | monty@mashka.mysql.fi <> | 2003-03-14 17:08:42 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-03-14 17:08:42 +0200 |
commit | 5ee1dbbe583e3269eddc6a5c16eb1bd0a8cc6a07 (patch) | |
tree | 2c4870b4c69060f127e0c4aca401c4312128a363 /mysql-test/t/create.test | |
parent | 6c81552dd3edc97ba2bfea9bccaff9d1ecb2b132 (diff) | |
download | mariadb-git-5ee1dbbe583e3269eddc6a5c16eb1bd0a8cc6a07.tar.gz |
Check for empty table/column names
Diffstat (limited to 'mysql-test/t/create.test')
-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 1a829eec6a3..b11c07e5b8d 100644 --- a/mysql-test/t/create.test +++ b/mysql-test/t/create.test @@ -59,6 +59,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 # |