adding test scripts
[csql.git] / test / tools / csql / exp.test058.ksh
blob022e8d0292917e5d48e006c60f834d094dde4ab8
1 Statement Executed
2 echo create index idx1 on t1(f1) hash unique;
3 Statement Executed
4 echo create index idx2 on t1(f1) tree unique;
5 Statement Executed
6 CREATE TABLE t1 (f1 INT NOT NULL , f2 INT , f3 INT );
7 CREATE INDEX idx1 on t1 ( f1 ) HASH UNIQUE;
8 CREATE INDEX idx2 on t1 ( f1 ) TREE UNIQUE;
9 Statement Executed