windows changes
[csql.git] / test / tools / catalog / create1.sql
blob5033c0ce1217632d8f8250d5a186cbca95bb3244
1 echo create table t2 and constraints with three integer fields and primary key f1;
2 create table t2 (f1 int,f2 int,f3 int,primary key(f1));
3 create index t2Uniqueidx on t2(f3) unique;