summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/kill.result
blob: 5e75e75a41affd84ba82c828f6deca1bd6612a1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# MDEV-14996
#  Assertion `!thd->get_stmt_da()->is_sent() ||
# thd->killed == KILL_CONNECTION' failed in ha_maria::external_lock
#
CREATE TABLE t1 (a INT) ENGINE=Aria;
connect  con1,localhost,root,,;
FLUSH TABLE t1 FOR EXPORT;
KILL CONNECTION_ID();
ERROR 70100: Connection was killed
disconnect con1;
connection default;
DROP TABLE t1;