The expected file was wrong earlier
[csql.git] / test / tools / csql / exp.test057.ksh
blob9c13c6f94c475e96d0d3b3bd4f527a1949607373
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 SET AUTOCOMMIT OFF;
11 Statement Executed