1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Check for empty table/column names

This commit is contained in:
monty@mashka.mysql.fi
2003-03-14 17:08:42 +02:00
parent 6c81552dd3
commit 5ee1dbbe58
6 changed files with 35 additions and 10 deletions

View File

@@ -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
#