mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
21 lines
438 B
Text
21 lines
438 B
Text
#
|
|
# MDEV-23365: Assertion `!is_set() || (m_status == DA_OK_BULK &&
|
|
# is_bulk_op())' failed upon killed TRUNCATE
|
|
#
|
|
CREATE TABLE t1 (a INT) ENGINE=MyISAM;
|
|
LOCK TABLE t1 READ;
|
|
connect con1,localhost,root,,test;
|
|
SET SESSION max_session_mem_used= 45500;
|
|
LOCK TABLE t1 WRITE;
|
|
connection default;
|
|
SELECT * FROM t1;
|
|
a
|
|
UNLOCK TABLES;
|
|
connection con1;
|
|
TRUNCATE TABLE t1;
|
|
disconnect con1;
|
|
connection default;
|
|
DROP TABLE t1;
|
|
#
|
|
# End of 10.2 tests
|
|
#
|