Commit aad6ca0f authored by unknown's avatar unknown

Adding some more filtering for tests that kills queries and

cause sporadic, but benign, errors.


mysql-test/lib/mtr_report.pl:
  Filtering out sporadic but benign error in rpl_err_ignoredtable.
parent ca9da416
...@@ -375,11 +375,12 @@ sub mtr_report_stats ($) { ...@@ -375,11 +375,12 @@ sub mtr_report_stats ($) {
/Slave: Cannot add or update a child row: a foreign key constraint fails .* Error_code: 1452/ /Slave: Cannot add or update a child row: a foreign key constraint fails .* Error_code: 1452/
)) or )) or
# rpl_skip_error and binlog_killed_simulate produce an error which is skipped (slave does not stop) # These tests does "kill" on queries, causing sporadic errors when writing to logs
(($testname eq 'rpl.rpl_skip_error' or (($testname eq 'rpl.rpl_skip_error' or
$testname eq 'rpl.rpl_err_ignoredtable' or
$testname eq 'binlog.binlog_killed_simulate' or $testname eq 'binlog.binlog_killed_simulate' or
$testname eq 'binlog.binlog_killed') and $testname eq 'binlog.binlog_killed') and
(/Failed to write to mysql\.general_log/ (/Failed to write to mysql\.\w+_log/
)) or )) or
# rpl_temporary has an error on slave that can be ignored # rpl_temporary has an error on slave that can be ignored
......
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