Commit 55621429 authored by serg@janus.mylan's avatar serg@janus.mylan

mtr_report.pl:

  InnoDB errors are no less important for pushbuild to monitor
  than InnoDB warnings
parent 85743549
...@@ -234,6 +234,7 @@ sub mtr_report_stats ($) { ...@@ -234,6 +234,7 @@ sub mtr_report_stats ($) {
"\\[ERROR\\]", "\\[ERROR\\]",
"^Error:", "^==.* at 0x", "^Error:", "^==.* at 0x",
"InnoDB: Warning", "InnoDB: Warning",
"InnoDB: Error",
"^safe_mutex:", "^safe_mutex:",
"missing DBUG_RETURN", "missing DBUG_RETURN",
"mysqld: Warning", "mysqld: Warning",
...@@ -335,15 +336,20 @@ sub mtr_report_stats ($) { ...@@ -335,15 +336,20 @@ sub mtr_report_stats ($) {
/\QError in Log_event::read_log_event(): 'Sanity check failed', data_len: 258, event_type: 49\E/ or /\QError in Log_event::read_log_event(): 'Sanity check failed', data_len: 258, event_type: 49\E/ or
/Statement is not safe to log in statement format/ or /Statement is not safe to log in statement format/ or
# test case for Bug#bug29807 copies a stray frm into database
/InnoDB: Error: table `test`.`bug29807` does not exist in the InnoDB internal/ or
/Cannot find table test\/bug29807 from the internal data dictionary/ or
# innodb foreign key tests that fail in ALTER or RENAME produce this
/InnoDB: Error: in ALTER TABLE `test`.`t[12]`/ or
/InnoDB: Error: in RENAME TABLE table `test`.`t1`/ or
/InnoDB: Error: table `test`.`t[12]` does not exist in the InnoDB internal/ or
# Test case for Bug#14233 produces the following warnings: # Test case for Bug#14233 produces the following warnings:
/Stored routine 'test'.'bug14233_1': invalid value in column mysql.proc/ or /Stored routine 'test'.'bug14233_1': invalid value in column mysql.proc/ or
/Stored routine 'test'.'bug14233_2': invalid value in column mysql.proc/ or /Stored routine 'test'.'bug14233_2': invalid value in column mysql.proc/ or
/Stored routine 'test'.'bug14233_3': invalid value in column mysql.proc/ or /Stored routine 'test'.'bug14233_3': invalid value in column mysql.proc/ or
# BUG#29807 - innodb_mysql.test: Cannot find table test/t2
# from the internal data dictionary
/Cannot find table test\/bug29807 from the internal data dictionary/ or
# BUG#29839 - lowercase_table3.test: Cannot find table test/T1 # BUG#29839 - lowercase_table3.test: Cannot find table test/T1
# from the internal data dictiona # from the internal data dictiona
/Cannot find table test\/BUG29839 from the internal data dictionary/ /Cannot find table test\/BUG29839 from the internal data dictionary/
......
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