adding test scripts
[csql.git] / test / tools / csql / tree19.sql
blobe557b6ee5cae488ffad5554701126e1766e3c13e
1 echo create table t1(f1 int not null,f2 int,f3 int);
2 create table t1(f1 int not null,f2 int,f3 int);
3 echo insert into t1 values(1,2,3);
4 insert into t1 values(1,2,3);
5 echo insert into t1 values(10,20,30);
6 insert into t1 values(10,20,30);
7 echo insert into t1 values(100,200,300);
8 insert into t1 values(100,200,300);
9 echo select * from t1;
10 select * from t1;
11 echo rollback;
12 rollback;