mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
13 lines
295 B
Text
13 lines
295 B
Text
|
#
|
||
|
# MDEV-16929 Assertion ... in close_thread_tables upon killing connection
|
||
|
# running SHOW on sequence
|
||
|
#
|
||
|
CREATE SEQUENCE s ENGINE=InnoDB;
|
||
|
RENAME TABLE s TO s1;
|
||
|
connect con1,localhost,root,,test;
|
||
|
SHOW CREATE SEQUENCE s1;
|
||
|
connection default;
|
||
|
KILL thread_id;
|
||
|
connection default;
|
||
|
drop sequence s1;
|