diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-06-01 17:43:32 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-06-01 17:43:32 -0600 |
commit | d405cfb9966f881c435d4bbd0ecacf4b7cc27c35 (patch) | |
tree | 58fce061036a635d2710361cf4f687b6827d8f1f /mysql-test/t/flush.test | |
parent | 3e8412b89bd77cc72f16e020687713d916860d99 (diff) | |
download | mariadb-git-d405cfb9966f881c435d4bbd0ecacf4b7cc27c35.tar.gz |
test if dirty close releases global read lock held by a thread
Diffstat (limited to 'mysql-test/t/flush.test')
-rw-r--r-- | mysql-test/t/flush.test | 10 |
1 files changed, 10 insertions, 0 deletions
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; |