Commit a5057063 authored by sasha@mysql.sashanet.com's avatar sasha@mysql.sashanet.com

Merge mysql.sashanet.com:/home/sasha/src/bk/mysql

into mysql.sashanet.com:/home/sasha/src/bk/mysql-4.0
parents 390ea98f e09d554e
...@@ -32,3 +32,13 @@ connection con2; ...@@ -32,3 +32,13 @@ connection con2;
unlock tables; unlock tables;
connection con1; connection con1;
reap; 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