adding test scripts
[csql.git] / test / durability / recovery / ins_commit.sql
blobfe7bc283e8596418b0fa0d69dc441cbfa8ca1695
1 echo insert into t2 values(10,100.001,'2001-1-1');
2 insert into t2 values(10,100.001,'2001-1-1');
3 echo insert into t2 values(50,500.005,'2005-5-5');
4 insert into t2 values(50,500.005,'2005-5-5');
5 echo insert into t2 values(10,100.001,'2001-1-1');
6 insert into t2 values(10,100.001,'2001-1-1');
7 echo insert into t2 values(20,200.002,'2002-2-2');
8 insert into t2 values(20,200.002,'2002-2-2');
9 echo insert into t2 values(30,300.003,'2003-3-3');
10 insert into t2 values(30,300.003,'2003-3-3');
11 echo SET AUTOCOMMIT OFF;
12 SET AUTOCOMMIT OFF;
13 echo insert into t2 values(100,1000.0001,'2001-1-1');
14 insert into t2 values(100,1000.0001,'2001-1-1');
15 echo insert into t2 values(500,5000.0005,'2005-5-5');
16 insert into t2 values(500,5000.0005,'2005-5-5');
17 echo insert into t2 values(100,1000.0001,'2001-1-1');
18 insert into t2 values(100,1000.0001,'2001-1-1');
19 echo insert into t2 values(200,2000.0002,'2002-2-2');
20 insert into t2 values(200,2000.0002,'2002-2-2');
21 echo insert into t2 values(300,3000.0003,'2003-3-3');
22 insert into t2 values(300,3000.0003,'2003-3-3');
23 echo select * from t2;
24 select * from t2;
25 echo COMMIT;
26 COMMIT;