MDEV-9945 - main.kill_processlist-6619 fails sporadically

SHOW PROCESSLIST output can be affected by not completed concurrent queries.
Removed this affected SHOW PROCESSLIST since it doesn't seem to affect original
problem.
This commit is contained in:
Sergey Vojtovich 2016-04-19 14:05:52 +04:00
parent 18ff6f654b
commit 6c0e231c02
2 changed files with 0 additions and 6 deletions

View file

@ -1,8 +1,4 @@
connect con1,localhost,root,,;
SHOW PROCESSLIST;
Id User Host db Command Time State Info Progress
# root # test Sleep # # NULL 0.000
# root # test Query # # SHOW PROCESSLIST 0.000
connection default;
KILL QUERY con_id;
connection con1;

View file

@ -5,8 +5,6 @@
--enable_connect_log
--connect (con1,localhost,root,,)
--let $con_id = `SELECT CONNECTION_ID()`
--replace_column 1 # 3 # 6 # 7 #
SHOW PROCESSLIST;
--connection default
--replace_result $con_id con_id
eval KILL QUERY $con_id;