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