mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
13 lines
338 B
Text
13 lines
338 B
Text
#
|
|
# 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;
|