diff options
Diffstat (limited to 'mysql-test/r/status.result')
-rw-r--r-- | mysql-test/r/status.result | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mysql-test/r/status.result b/mysql-test/r/status.result index 8f10625744b..cf35781d008 100644 --- a/mysql-test/r/status.result +++ b/mysql-test/r/status.result @@ -16,13 +16,11 @@ unlock tables; lock tables t1 read; update t1 set n = 3; unlock tables; -show status like 'Table_lock%'; +show status like 'Table_locks_waited%'; Variable_name Value -Table_locks_immediate 17 Table_locks_waited 1 -select * from information_schema.session_status where variable_name like 'Table_lock%'; +select * from information_schema.session_status where variable_name like 'Table_locks_waited%'; VARIABLE_NAME VARIABLE_VALUE -TABLE_LOCKS_IMMEDIATE 18 TABLE_LOCKS_WAITED 1 drop table t1; select 1; |