mirror of
https://github.com/MariaDB/server.git
synced 2025-11-28 17:36:30 +03:00
Skip rollback and other redo-log-generating tasks if srv_apply_log_only is set. Instead of assigning the debug variable recv_no_log_write = FALSE, assign it to srv_apply_log_only, so that any unwanted writes are caught.
11 lines
268 B
Plaintext
11 lines
268 B
Plaintext
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;
|