adding test scripts
[csql.git] / test / tools / csqldump / foreign4.sql
blob0be0bc6e1694887537a19b2dda77405ac39c7fb5
1 CREATE TABLE t1(f1 int,f2 int,primary key(f1));
2 CREATE TABLE t2(f3 int,f4 int,primary key(f4),foreign key(f3) references t1(f1));
3 CREATE TABLE t3(f5 int,f6 int,foreign key(f5) references t2(f4));