You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do not kill the server after call mtr.add_suppression(), because
the procedure modifies a crash-unsafe table, and we do not want to
corrupt that table.
call mtr.add_suppression("InnoDB: Starting to delete and rewrite log files");
3
-
call mtr.add_suppression("InnoDB: New log files created");
4
-
call mtr.add_suppression("InnoDB: The log sequence numbers [0-9]+ and [0-9]+ in ibdata files do not match the log sequence number [0-9]+ in the ib_logfiles");
call mtr.add_suppression("InnoDB: Starting to delete and rewrite log files");
18
-
call mtr.add_suppression("InnoDB: New log files created");
19
-
call mtr.add_suppression("InnoDB: The log sequence numbers [0-9]+ and [0-9]+ in ibdata files do not match the log sequence number [0-9]+ in the ib_logfiles");
20
-
21
16
CREATE TABLE t1(a INT PRIMARY KEY) ENGINE=InnoDB;
22
17
BEGIN;
23
18
INSERT INTO t1 VALUES (42);
@@ -181,5 +176,12 @@ let SEARCH_PATTERN= InnoDB: Renaming log file .*ib_logfile101 to .*ib_logfile0;
call mtr.add_suppression("InnoDB: Starting to delete and rewrite log files");
182
+
call mtr.add_suppression("InnoDB: New log files created");
183
+
call mtr.add_suppression("InnoDB: The log sequence numbers [0-9]+ and [0-9]+ in ibdata files do not match the log sequence number [0-9]+ in the ib_logfiles");
0 commit comments