~drizzle-trunk/drizzle/development

1
2
3
4
create table t1 (a int primary key);
insert into t1 (a) values (1);
select * from t1;
drop table t1;