mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
1b50d59960
SHOW PROCESSLIST output can be affected by not completed concurrent KILL QUERY. Filter out more column values to make output stable.
15 lines
407 B
Text
15 lines
407 B
Text
#
|
|
# MDEV-6619 SHOW PROCESSLIST returns empty result set after KILL QUERY
|
|
#
|
|
--source include/not_embedded.inc
|
|
--enable_connect_log
|
|
--connect (con1,localhost,root,,)
|
|
--let $con_id = `SELECT CONNECTION_ID()`
|
|
--connection default
|
|
--replace_result $con_id con_id
|
|
eval KILL QUERY $con_id;
|
|
--connection con1
|
|
--error ER_QUERY_INTERRUPTED
|
|
SHOW PROCESSLIST;
|
|
--replace_column 1 # 3 # 5 # 6 # 7 # 8 #
|
|
SHOW PROCESSLIST;
|