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

lot's of fixes with test cases

This commit is contained in:
Sinisa@sinisa.nasamreza.org
2002-11-18 18:28:51 +02:00
parent ae8eb2d932
commit b9a671f267
6 changed files with 13 additions and 7 deletions

View File

@@ -110,3 +110,6 @@ drop table t1;
create table t1 select if('2002'='2002','Y','N');
select * from t1;
drop table if exists t1;
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;