adding test scripts
[csql.git] / test / cache / Durability / create_insert_attdb.sql
blob963d98975e9aaaf0b77f646a8d996640305683a2
1 CREATE TABLE t1(f1 int,f2 char(20),f3 int,primary key(f1));
2 INSERT INTO t1 VALUES(1,'Bijay',10);
3 INSERT INTO t1 VALUES(2,'Jiten',20);
4 INSERT INTO t1 VALUES(3,'Praba',30);
5 INSERT INTO t1 VALUES(4,'Kisor',40);
6 INSERT INTO t1 VALUES(5,'Nihar',50);
7 COMMIT;