adding test scripts
[csql.git] / test / tools / csql / tree8.sql
blobad56c280bb71f6991637d45094bdc4924aad3815
1 create table t1(f1 int not null,f2 int,f3 int);
2 echo create index idx1 on t1(f1)unique;
3 create index idx1 on t1(f1)unique;
4 echo create index idx2 on t1(f1)primary;
5 create index idx2 on t1(f1)primary;