1
0
mirror of https://github.com/MariaDB/server.git synced 2025-04-18 21:44:20 +03:00
mariadb/mysql-test/suite/sql_sequence/debug_sync.result
Monty a536664e80 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.
2018-05-08 13:29:41 +03:00

8 lines
171 B
Plaintext

connect con1,localhost,root,,;
CREATE TEMPORARY SEQUENCE f ENGINE=InnoDB;
disconnect con1;
connection default;
SELECT 'Still alive' AS `Heartbeat`;
Heartbeat
Still alive