1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-13 02:22:51 +03:00
Files
mariadb/mysql-test/t/kill_query-6728.test
2016-03-31 10:11:16 +04:00

14 lines
279 B
Plaintext

#
# MDEV-6728 KILL QUERY executed on an idle connection can interrupt the next query
#
--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;