diff options
author | unknown <tsmith@quadxeon.mysql.com> | 2007-06-06 03:49:24 +0200 |
---|---|---|
committer | unknown <tsmith@quadxeon.mysql.com> | 2007-06-06 03:49:24 +0200 |
commit | 10a21ed042e39c8800893dbb8ba711d54daf4896 (patch) | |
tree | 48391fb6143702a62b9612683a0d29d2ed5f6076 /mysql-test | |
parent | 12ffd574b9582ef243421ae2ec2ae16b67b71ff4 (diff) | |
download | mariadb-git-10a21ed042e39c8800893dbb8ba711d54daf4896.tar.gz |
mtr_report.pl:
Add another exception to the acceptable mysqld errors, for test case for bug 28436
mysql-test/lib/mtr_report.pl:
Add another exception to the acceptable mysqld errors, for test case for bug 28436
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/lib/mtr_report.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_report.pl b/mysql-test/lib/mtr_report.pl index d1b23e973b2..096840eb559 100644 --- a/mysql-test/lib/mtr_report.pl +++ b/mysql-test/lib/mtr_report.pl @@ -358,7 +358,11 @@ sub mtr_report_stats ($) { /lower_case_table_names is set/ or /skip-name-resolve mode/ or /slave SQL thread aborted/ or - /Slave: .*Duplicate entry/ + /Slave: .*Duplicate entry/ or + # Special case, made as specific as possible, for: + # Bug #28436: Incorrect position in SHOW BINLOG EVENTS causes + # server coredump + /\QError in Log_event::read_log_event(): 'Sanity check failed', data_len: 258, event_type: 49\E/ ) { next; # Skip these lines |