Commit d405cfb9 authored by unknown's avatar unknown

test if dirty close releases global read lock held by a thread

parent 3e8412b8
......@@ -32,3 +32,13 @@ connection con2;
unlock tables;
connection con1;
reap;
# test if dirty close releases global read lock
connection con1;
create table t1 (n int);
flush tables with read lock;
dirty_close con1;
connection con2;
insert into t1 values (345);
select * from t1;
drop table t1;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment