Skip to content
Permalink
Browse files
make plugins.processlist more robust
  • Loading branch information
vuvova committed Jun 28, 2018
1 parent 00ccff4 commit 78a0646
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
@@ -2,10 +2,8 @@ create table t1 (a int) engine=innodb;
start transaction;
insert t1 values (1);
connect con2,localhost,root;
state from show engine innodb status
state from show engine innodb status, must be empty

state from show processlist

disconnect con2;
connection default;
drop table t1;
@@ -8,11 +8,12 @@ start transaction;
insert t1 values (1);
let id=`select connection_id()`;
connect con2,localhost,root;
let $wait_condition=select state='' from information_schema.processlist where id = $id;
--source include/wait_condition.inc
replace_regex /\"/-/; #"
let s=`show engine innodb status`;
disable_query_log;
eval select regexp_replace("$s", '(?s)^.*MySQL thread id $id,.*root([^\n]*)\n.*', '\\\\1') as `state from show engine innodb status`;
eval select state as `state from show processlist` from information_schema.processlist where id = $id;
eval select regexp_replace("$s", '(?s)^.*MySQL thread id $id,.*root([^\n]*)\n.*', '\\\\1') as `state from show engine innodb status, must be empty`;
enable_query_log;
disconnect con2;
connection default;

0 comments on commit 78a0646

Please sign in to comment.