mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
e26c822aa0
Problem was that the code didn't handle a transaction created in innodb as part of a failed mysql_lock_tables()
12 lines
295 B
Text
12 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;
|