[root@fytestslave ~]# mysql -ufy -pfy -h192.168.20.158mysql> lock table test1 read;
Query OK, 0 rows affected (0.00 sec)mysql> show open tables where in_use > 0;
+----------+-------+--------+-------------+
| Database | Table | In_use | Name_locked |
+----------+-------+--------+-------------+
| test     | test1 |      1 |           0 |
+----------+-------+--------+-------------+
1 row in set (0.00 sec)mysql> unlock tables;
Query OK, 0 rows affected (0.00 sec)mysql> show open tables where in_use > 0;
+----------+-------+--------+-------------+
| Database | Table | In_use | Name_locked |
+----------+-------+--------+-------------+
| test     | test1 |      1 |           0 |
+----------+-------+--------+-------------+
1 row in set (0.00 sec)在mysql-proxy上加读锁表操作测试,但是发现解锁unlock tables的时候并不成功,请问是什么原因?