mirror of
https://github.com/MariaDB/server.git
synced 2025-06-01 19:42:01 +03:00
15 lines
300 B
Plaintext
15 lines
300 B
Plaintext
#
|
|
# 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;
|
|
|