mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Fix test case of Bug 30331
mysql-test/r/lock_multi.result: Update test case result. mysql-test/t/lock_multi.test: Don't print the value of Table_lock_waited, check the precedence instead. Unlock the table before dropping.
This commit is contained in:
@@ -147,12 +147,10 @@ drop table if exists t1,t2;
|
|||||||
create table t1 (a int);
|
create table t1 (a int);
|
||||||
flush status;
|
flush status;
|
||||||
lock tables t1 read;
|
lock tables t1 read;
|
||||||
show status like 'Table_locks_waited';
|
|
||||||
Variable_name Value
|
|
||||||
Table_locks_waited 0
|
|
||||||
insert into t1 values(1);;
|
insert into t1 values(1);;
|
||||||
|
unlock tables;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
show status like 'Table_locks_waited';
|
select @tlwa < @tlwb;
|
||||||
Variable_name Value
|
@tlwa < @tlwb
|
||||||
Table_locks_waited 1
|
1
|
||||||
End of 5.1 tests
|
End of 5.1 tests
|
||||||
|
@@ -450,7 +450,7 @@ drop table if exists t1,t2;
|
|||||||
create table t1 (a int);
|
create table t1 (a int);
|
||||||
flush status;
|
flush status;
|
||||||
lock tables t1 read;
|
lock tables t1 read;
|
||||||
show status like 'Table_locks_waited';
|
let $tlwa= `show status like 'Table_locks_waited'`;
|
||||||
connect (waiter,localhost,root,,);
|
connect (waiter,localhost,root,,);
|
||||||
connection waiter;
|
connection waiter;
|
||||||
--send insert into t1 values(1);
|
--send insert into t1 values(1);
|
||||||
@@ -459,9 +459,15 @@ let $wait_condition=
|
|||||||
select count(*) = 1 from information_schema.processlist
|
select count(*) = 1 from information_schema.processlist
|
||||||
where state = "Locked" and info = "insert into t1 values(1)";
|
where state = "Locked" and info = "insert into t1 values(1)";
|
||||||
--source include/wait_condition.inc
|
--source include/wait_condition.inc
|
||||||
|
let $tlwb= `show status like 'Table_locks_waited'`;
|
||||||
|
unlock tables;
|
||||||
drop table t1;
|
drop table t1;
|
||||||
disconnect waiter;
|
disconnect waiter;
|
||||||
connection default;
|
connection default;
|
||||||
show status like 'Table_locks_waited';
|
--disable_query_log
|
||||||
|
eval SET @tlwa= SUBSTRING_INDEX('$tlwa', ' ', -1);
|
||||||
|
eval SET @tlwb= SUBSTRING_INDEX('$tlwb', ' ', -1);
|
||||||
|
--enable_query_log
|
||||||
|
select @tlwa < @tlwb;
|
||||||
|
|
||||||
--echo End of 5.1 tests
|
--echo End of 5.1 tests
|
||||||
|
Reference in New Issue
Block a user