Commit c23c0013 authored by Kristian Nielsen's avatar Kristian Nielsen

MDEV-7491: Occasional test failure in innodb.group_commit_crash_no_optimize_thread

The test case deliberately crashes the server. If this crash happens in the
middle of a page write, InnoDB crash recovery recovers the page from the
doublewrite buffer, writing a message to the error log that is flagged as a
test failure by mysql-test-run. So add a suppression for this.
parent f2be9c0f
call mtr.add_suppression("InnoDB: Warning: database page corruption or a failed");
CREATE TABLE t1(a CHAR(255), CREATE TABLE t1(a CHAR(255),
b CHAR(255), b CHAR(255),
c CHAR(255), c CHAR(255),
......
call mtr.add_suppression("InnoDB: Warning: database page corruption or a failed");
CREATE TABLE t1(a CHAR(255), CREATE TABLE t1(a CHAR(255),
b CHAR(255), b CHAR(255),
c CHAR(255), c CHAR(255),
......
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
--source include/have_debug.inc --source include/have_debug.inc
--source include/have_log_bin.inc --source include/have_log_bin.inc
call mtr.add_suppression("InnoDB: Warning: database page corruption or a failed");
let $file_format_max=`SELECT @@innodb_file_format_max`; let $file_format_max=`SELECT @@innodb_file_format_max`;
CREATE TABLE t1(a CHAR(255), CREATE TABLE t1(a CHAR(255),
b CHAR(255), b CHAR(255),
......
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
--source include/have_debug.inc --source include/have_debug.inc
--source include/have_log_bin.inc --source include/have_log_bin.inc
call mtr.add_suppression("InnoDB: Warning: database page corruption or a failed");
let $file_format_max=`SELECT @@innodb_file_format_max`; let $file_format_max=`SELECT @@innodb_file_format_max`;
CREATE TABLE t1(a CHAR(255), CREATE TABLE t1(a CHAR(255),
b CHAR(255), b CHAR(255),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment