Adding tests for composite keys
[csql.git] / test / tools / csql / exp.test033.ksh
blob2f45a35b1b3f7016c0e550821a0840f3760d7857
1 Statement Executed
2 Statement execute failed with error -17
3 Statement Executed: Rows Affected = 1
4 Statement Executed: Rows Affected = 1
5 echo select count(f1) from t1;
6 ---------------------------------------------------------
8 ---------------------------------------------------------
9 2
11 CREATE TABLE t1 (f1 INT NOT NULL , f2 CHAR (10) NOT NULL , f3 INT );
12 SET AUTOCOMMIT OFF;
13 INSERT INTO t1 VALUES(1, '1',1);
14 INSERT INTO t1 VALUES(3, '1',3);
15 COMMIT;
16 Statement Executed