summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_plugin/r/innodb_bug54453.result
blob: e623989a9d40e1113f068b640263c51c3048f54e (plain)
1
2
3
4
5
6
7
8
9
#
# Bug#54453: Failing assertion: trx->active_trans when renaming a table with active trx
#
DROP TABLE IF EXISTS bug54453;
CREATE TABLE bug54453(a INT) ENGINE=InnoDB;
ALTER TABLE bug54453 RENAME TO bug54453_2;
SELECT * FROM bug54453_2;
a
DROP TABLE bug54453_2;