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