~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
8
create table t1 (a int) engine=innodb;
set autocommit=0;
insert t1 values (1);
flush tables with read lock;
commit;
unlock tables;
drop table t1;
set autocommit=1;