summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-03-15 04:41:57 +0200
committermonty@mashka.mysql.fi <>2003-03-15 04:41:57 +0200
commit968e9a73d4744701056286a2a2825a502fd08bdc (patch)
tree872ca3e7569fe0db0147fd6f118af292b828ffc0 /mysql-test
parenta6482b1304e8a5f1cde9465fd9bf187376ddceea (diff)
parent369da47836dc6da2c187697aa6b99edf8c4e7310 (diff)
downloadmariadb-git-968e9a73d4744701056286a2a2825a502fd08bdc.tar.gz
merge with 3.23 to get:
- Fix for empty table/column names
Diffstat (limited to 'mysql-test')
-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
#