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