windows changes
[csql.git] / test / tools / csql / autocommit1.sql
blob81f1eb8851baffc8259216f6ac98aa6cce055b02
1 echo create table t1(f1 int,f2 char(10));
2 create table t1(f1 int,f2 char(10));
3 echo insert into t1 values(1,'x');
4 insert into t1 values(1,'x');
5 echo insert into t1 values(2,'y');
6 insert into t1 values(2,'y');