adding test scripts
[csql.git] / test / tools / csql / csql5.sql
blob2b5528e729133f5ad7a08563285ed9b980dbe918
1 echo drop table test;
2 echo create table t1 (f1 integer);
3 create table t1 (f1 integer);
4 echo drop table t1;
5 drop table t1;
6 echo create table t1 (f1 integer);
7 create table t1 (f1 integer);
8 echo drop table t1;
9 drop table t1;
10 echo create table t1(f1 int,f2 int);
11 create table t1(f1 int,f2 int);
12 echo create index idx1 on t1(f1);
13 create index idx1 on t1(f1);
14 echo drop index idx1;
15 drop index idx1;
16 echo create index idx1 on t1(f1);
17 create index idx1 on t1(f1);
18 echo drop table t1;
19 drop table t1;