windows changes
[csql.git] / test / tools / csql / tree12.sql
blobdea8f48aaf73f5bba1d94c15e7bfdc76e5b0aad1
1 create table t1(f1 int not null,f2 int,f3 int);
2 echo create index idx1 on t1(f1) hash unique;
3 create index idx1 on t1(f1) hash unique;
4 echo drop index idx1;
5 drop index idx1;
6 echo create index idx2 on t1(f1) hash primary;
7 create index idx2 on t1(f1) hash primary;