mariadb/mysql-test/main/kill_query-6728.test
2018-03-29 13:59:44 +03:00

13 lines
279 B
Text

#
# 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;