1call mtr.add_suppression("InnoDB: New log files created");
2CREATE TABLE t(a varchar(60)) ENGINE INNODB;
3start transaction;
4INSERT INTO t VALUES(1);
5NOT FOUND /Rolled back recovered transaction/ in current_test
6# expect NOT FOUND
7SELECT count(*) FROM t;
8count(*)
91
10DROP TABLE t;
11