*** empty log message ***
[csql.git] / test / tools / csql / csql7.sql
bloba7a8d7f42a76535f861b8c7b6d498da197352566
1 echo Descr:drop index  test;
2 create table t1 (f1 integer not null, f2 integer not null, 
3                  f3 int not null, f4 int not null);
4 create index idx1 on t1 (f1);
5 create index idx2 on t1 (f2) UNIQUE;
6 create index idx3 on t1 (f3) PRIMARY;
7 drop index idx2;
8 drop table t1;