64 bit build fix
[csql.git] / test / sql / StmtCache / exp.test005.ksh
blob64c64b0690ffca904fc3f0feae8481756e5207f0
1 AFTER INSERT PREPARE
2 STATEMENT CACHE START
3 SQL=INSERT INTO t1 VALUES(1234,?,'CSQL'); hits=0 inuse=1
4 STATEMENT CACHE END
5 CREATE TABLE t1 (f1 INT NOT NULL , f2 INT , f3 VARCHAR (20));
6 CREATE INDEX t1_idx1_Primary on t1 ( f1 ) HASH UNIQUE;
7 INSERT INTO t1 VALUES(1,1, 'First');
8 INSERT INTO t1 VALUES(2,1, 'Second');
9 INSERT INTO t1 VALUES(3,1, 'Third');
10 INSERT INTO t1 VALUES(4,1, 'Fourth');
11 INSERT INTO t1 VALUES(5,1, 'Fifth');
12 INSERT INTO t1 VALUES(1234,1, 'CSQL');