summaryrefslogtreecommitdiff
path: root/mysql-test/main/kill_query-6728.test
blob: a04c51a88dcddb1beb8369a1e2346d74e78d043d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# 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;