blob: 485256a65b6573fe9c6526c08ef03f3480f8cd4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# 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;
|