64 bit build fix
[csql.git] / test / sql / StmtCache / exp.test001.ksh
blobbdb6f112a1e3e9f468afa70bf21e76a834c526b1
1 echo create table t1(f1 int, f2 timestamp);
2 Statement Executed
3 echo insert into t1 values(1,'now');
4 Statement Executed: Rows Affected = 1
5 echo select count(*) from t1 where f2 < 'now';
6 ---------------------------------------------------------
7 COUNT(*)
8 ---------------------------------------------------------
9 1
11 echo insert into t1 values(2,'now');
12 Statement Executed: Rows Affected = 1
13 echo select count(*) from t1 where f2 < 'now';
14 ---------------------------------------------------------
15 COUNT(*)
16 ---------------------------------------------------------
19 Statement Executed