File Removed
[csql.git] / test / tools / csql / exp.test056.ksh
blob814bed00ebf0b3b6c71dc2bd9ba6207681981b86
1 Statement Executed
2 echo create index idx1 on t1(f1) unique;
3 Statement Executed
4 echo create index idx2 on t1(f1) primary;
5 Statement execute failed with error -4
6 echo create index idx3 on t1(f1) hash primary;
7 Statement execute failed with error -4
8 CREATE TABLE t1 (f1 INT NOT NULL , f2 INT , f3 INT );
9 CREATE INDEX idx1 on t1 ( f1 ) HASH UNIQUE;
10 SET AUTOCOMMIT OFF;
11 Statement Executed