#At file:///home/satya/WORK/mysql-5.1-bugteam-39886/
2754 Satya B 2009-01-29
An addition to BUG#39886 - Table full for MEMORY table is not written into error log
After the earlier fix, mtr tests reports "table full" messages as warnings. This is
expected, this patch fixes the mtr testframework to ignore the error message.
modified:
mysql-test/lib/mtr_report.pl
per-file messages:
mysql-test/lib/mtr_report.pl
fixed mtr_report_stats to ignore the Table Full error messages generated by the testcases main.almost_full, main.myisam_data_pointer_size_func
=== modified file 'mysql-test/lib/mtr_report.pl'
--- a/mysql-test/lib/mtr_report.pl 2009-01-05 16:10:20 +0000
+++ b/mysql-test/lib/mtr_report.pl 2009-01-29 12:00:32 +0000
@@ -415,7 +415,13 @@ sub mtr_report_stats ($) {
/lower_case_table_names was set to 2, even though your the file system '.*' is case sensitive. Now setting lower_case_table_names to 0 to avoid future problems./ or
# this test is expected to print warnings
- ($testname eq 'main.innodb_bug39438')
+ ($testname eq 'main.innodb_bug39438') or
+
+ # Bug#39886, logs 'Table full' error message
+ (($testname eq 'main.almost_full' or
+ $testname eq 'main.myisam_data_pointer_size_func') and
+ (/The table '.*' is full/
+ ))
)
{
next; # Skip these lines
| Thread |
|---|
| • bzr commit into mysql-5.1-bugteam branch (satya.bn:2754) Bug#39886 | Satya B | 29 Jan |