File Removed
[csql.git] / test / tools / csql / exp.test059.ksh
blob96a2f1b19996ed8e6377e3e244205916b8ac5e6c
1 Statement Executed
2 echo create index idx1 on t1(f1) hash primary;
3 Statement Executed
4 echo create index idx2 on t1(f1) tree primary;
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 SET AUTOCOMMIT OFF;
10 Statement Executed