adding test scripts
[csql.git] / test / tools / csql / drop_pk.sql
blob1607387373d9e8a8c5357e0763e7d3e00936120d
1 CREATE TABLE t1(f1 INT,f2 INT, PRIMARY KEY(f1));
2 CREATE TABLE t2(f1 INT,f2 INT,FOREIGN KEY(f1) REFERENCES t1(f1));
3 drop table t1;