*** empty log message ***
[csql.git] / test / tools / csql / exp.test063.ksh
blob3e88b3132f5d0bc4862790c5da05adc0bc9f229b
1 Statement Executed
2 echo create index idx1 on t1(f1) tree unique;
3 Statement Executed
4 echo drop index idx1;
5 Statement Executed
6 echo create index idx2 on t1(f1) tree primary;
7 Statement Executed
8 CREATE TABLE t1 (f1 INT NOT NULL , f2 INT , f3 INT );
9 CREATE INDEX idx2 on t1 ( f1 ) TREE UNIQUE;
10 Statement Executed