2 echo create index idx1 on t1
(f1
) unique
;
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
;