mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
56c323c10f
reset KILL_QUERY when a new query execution is just about to be started
14 lines
300 B
Text
14 lines
300 B
Text
#
|
|
# MDEV-6728 KILL QUERY executed on an idle connection can interrupt the next query
|
|
#
|
|
--enable_connect_log
|
|
--connect (con1,localhost,root,,)
|
|
let $id=`select connection_id()`;
|
|
|
|
--connection default
|
|
--replace_result $id id
|
|
eval kill query $id;
|
|
|
|
--connection con1
|
|
select count(*) > 0 from mysql.user;
|
|
|