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

merge with 3.23 to get:

- Fix for empty table/column names
This commit is contained in:
monty@mashka.mysql.fi
2003-03-15 04:41:57 +02:00
7 changed files with 42 additions and 20 deletions

View File

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