File Removed
[csql.git] / test / tools / csql / exp.test052.ksh
blobcd35807cb144b22eff6046705fcd54a1c04b81fb
1 Statement Executed
2 Statement Executed: Rows Affected = 1
3 Statement Executed: Rows Affected = 1
4 Statement Executed: Rows Affected = 1
5 echo create index idx1 on t1(f1) tree unique;
6 Statement execute failed with error -21
7 CREATE TABLE t1 (f1 INT , f2 INT , f3 INT );
8 SET AUTOCOMMIT OFF;
9 INSERT INTO t1 VALUES(1,1,1);
10 INSERT INTO t1 VALUES(2,2,2);
11 INSERT INTO t1 VALUES(1,2,3);
12 COMMIT;
13 Statement Executed