mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
after merge fixes
This commit is contained in:
@ -263,11 +263,11 @@ a b
|
||||
3 4
|
||||
drop table t1;
|
||||
create table `t1 `(a int);
|
||||
Incorrect table name 't1 '
|
||||
ERROR 42000: Incorrect table name 't1 '
|
||||
create database `db1 `;
|
||||
Incorrect database name 'db1 '
|
||||
ERROR 42000: Incorrect database name 'db1 '
|
||||
create table t1(`a ` int);
|
||||
Incorrect column name 'a '
|
||||
ERROR 42000: Incorrect column name 'a '
|
||||
create table t1 (a int, key(a));
|
||||
create table t2 (b int, foreign key(b) references t1(a), key(b));
|
||||
drop table if exists t1,t2;
|
||||
|
Reference in New Issue
Block a user