diff options
Diffstat (limited to 'mysql-test/t/flush.test')
-rw-r--r-- | mysql-test/t/flush.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/flush.test b/mysql-test/t/flush.test index 773becfeba1..94586519c66 100644 --- a/mysql-test/t/flush.test +++ b/mysql-test/t/flush.test @@ -22,4 +22,13 @@ while ($1) connection con1; select * from t1; +connection con2; +flush tables with read lock; +--error 1099; drop table t2; +connection con1; +send drop table t2; +connection con2; +unlock tables; +connection con1; +reap; |