1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-18 23:03:28 +03:00
"Table truncated when creating another table name with Spaces"
added to check_db_name, check_table_name and check_column_name
test for end space
This commit is contained in:
vva@eagle.mysql.r18.ru
2004-03-05 22:13:33 +04:00
parent f074349917
commit 29bc7b03a0
5 changed files with 49 additions and 11 deletions

View File

@ -216,3 +216,9 @@ a b
0 2
3 4
drop table t1;
create table `t1 `(a int);
Incorrect table name 't1 '
create database `db1 `;
Incorrect database name 'db1 '
create table t1(`a ` int);
Incorrect column name 'a '