diff options
Diffstat (limited to 'mysql-test/r/lock.result')
-rw-r--r-- | mysql-test/r/lock.result | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/lock.result b/mysql-test/r/lock.result index c1e1ccb5bce..501c379b257 100644 --- a/mysql-test/r/lock.result +++ b/mysql-test/r/lock.result @@ -470,3 +470,13 @@ DROP TABLE t1, t2; # # End of 6.0 tests. # +create table t1 (a int) engine=myisam; +lock tables t1 write concurrent, t1 as t2 read; +lock tables t1 read local; +unlock tables; +unlock tables; +lock tables t1 read local; +lock tables t1 write concurrent, t1 as t2 read; +unlock tables; +unlock tables; +drop table t1; |