From e09d554ed6430bfc212a33eeeeebe03943abad63 Mon Sep 17 00:00:00 2001 From: "sasha@mysql.sashanet.com" <> Date: Fri, 1 Jun 2001 17:43:32 -0600 Subject: [PATCH] test if dirty close releases global read lock held by a thread --- mysql-test/r/flush.result | 2 ++ mysql-test/t/flush.test | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/mysql-test/r/flush.result b/mysql-test/r/flush.result index 76862936a16..e34f4f67195 100644 --- a/mysql-test/r/flush.result +++ b/mysql-test/r/flush.result @@ -1,2 +1,4 @@ n 3 +n +345 diff --git a/mysql-test/t/flush.test b/mysql-test/t/flush.test index 94586519c66..b7293307605 100644 --- a/mysql-test/t/flush.test +++ b/mysql-test/t/flush.test @@ -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;