summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/innodb/r/evict_tables_on_commit_debug.result
blob: d403b1e1306e13765948e456e7ea53d79b93874d (plain)
1
2
3
4
5
6
7
8
9
SET @save_debug= @@GLOBAL.innodb_evict_tables_on_commit_debug;
SET GLOBAL innodb_evict_tables_on_commit_debug=on;
CREATE TEMPORARY TABLE t1(a INT) ENGINE=InnoDB;
CREATE TABLE t2 (a INT) ENGINE=InnoDB;
INSERT INTO t1 VALUES(1);
INSERT INTO t2 VALUES(2);
DROP TABLE t2;
SET GLOBAL innodb_evict_tables_on_commit_debug=@save_debug;
DROP TEMPORARY TABLE t1;