mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
269f0a6871
don't send an OK packet if the SHOW PROCESSLIST was killed
14 lines
449 B
Text
14 lines
449 B
Text
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;
|
|
SHOW PROCESSLIST;
|
|
ERROR 70100: Query execution was interrupted
|
|
SHOW PROCESSLIST;
|
|
Id User Host db Command Time State Info Progress
|
|
# root # test Sleep # # NULL 0.000
|
|
# root # test Query # # SHOW PROCESSLIST 0.000
|