1
0
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:
monty@mysql.com
2004-03-18 00:09:13 +02:00
parent f9ad650490
commit f34a642d6e
14 changed files with 289 additions and 315 deletions

View File

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