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