summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/evict_tables_on_commit_debug.test
blob: 8cb45d0146530a5041eaa00dcbf19fc8528bbaae (plain)
1
2
3
4
5
6
7
8
9
10
11
--source include/have_innodb.inc
--source include/have_debug.inc
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;