mirror of
https://github.com/MariaDB/server.git
synced 2025-07-18 23:03:28 +03:00
fixed Bug #2985
"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:
@ -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 '
|
||||
|
Reference in New Issue
Block a user