creating tree unique index on a field based on which a primary key already exist
[csql.git] / test / tools / csql / exp.test061.ksh
blob702f1dd8e5dd45464cefc309d12e854104fd2a1f
1 Statement Executed
2 echo create index idx1 on t1(f1) tree unique;
3 Statement Executed
4 CREATE TABLE t1 (f1 INT NOT NULL , f2 INT , f3 INT );
5 CREATE INDEX t1_idx1_Primary on t1 ( f1 ) HASH UNIQUE;
6 CREATE INDEX idx1 on t1 ( f1 ) TREE UNIQUE;
7 SET AUTOCOMMIT OFF;
8 Statement Executed