mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
11 lines
268 B
Text
11 lines
268 B
Text
|
call mtr.add_suppression("InnoDB: New log files created");
|
||
|
CREATE TABLE t(a varchar(60)) ENGINE INNODB;
|
||
|
start transaction;
|
||
|
INSERT INTO t VALUES(1);
|
||
|
NOT FOUND /Rollback of trx with id/ in current_test
|
||
|
# expect NOT FOUND
|
||
|
SELECT count(*) FROM t;
|
||
|
count(*)
|
||
|
1
|
||
|
DROP TABLE t;
|