adding test scripts
[csql.git] / test / tools / csql / exp.test054.ksh
blobdaf70a0c7f127a65d846bc08f938d3a2a155b942
1 Statement Executed
2 echo create index idx1 on t1(f1) primary;
3 Statement Executed
4 echo create index idx2 on t1(f1) hash primary;
5 Statement execute failed with error -4
6 CREATE TABLE t1 (f1 INT NOT NULL , f2 INT , f3 INT );
7 CREATE INDEX idx1 on t1 ( f1 ) HASH UNIQUE;
8 Statement Executed