summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_plugin/t/innodb_bug54453.test
blob: 486695d326dbff2c17ec43cc496225e1d89ee3eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--source include/have_innodb_plugin.inc
--source include/have_log_bin.inc

--echo #
--echo # Bug#54453: Failing assertion: trx->active_trans when renaming a table with active trx
--echo #

--disable_warnings
DROP TABLE IF EXISTS bug54453;
--enable_warnings

CREATE TABLE bug54453(a INT) ENGINE=InnoDB;
ALTER TABLE bug54453 RENAME TO bug54453_2;
SELECT * FROM bug54453_2;
DROP TABLE bug54453_2;