Commit a536664e authored by Monty's avatar Monty

Added test case for MDEV-13029

MDEV 13029 Assertion `ds_control' failed in debug_sync upon closing connection
after creating temporary sequence

This test doesn't fail anymore. Adding it to ensure that the bug doesn't
appear again.
parent bd09c5ca
connect con1,localhost,root,,;
CREATE TEMPORARY SEQUENCE f ENGINE=InnoDB;
disconnect con1;
connection default;
SELECT 'Still alive' AS `Heartbeat`;
Heartbeat
Still alive
--source include/have_innodb.inc
--source include/have_debug_sync.inc
#
# MDEV-13029
# Assertion `ds_control' failed in debug_sync upon closing connection after
# creating temporary sequence
--connect (con1,localhost,root,,)
CREATE TEMPORARY SEQUENCE f ENGINE=InnoDB;
--disconnect con1
--connection default
--sleep 3
SELECT 'Still alive' AS `Heartbeat`;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment