mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
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.
This commit is contained in:
parent
af864fe91b
commit
b7c149693c
1 changed files with 7 additions and 1 deletions
|
@ -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
|
/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
|
# 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
|
next; # Skip these lines
|
||||||
|
|
Loading…
Add table
Reference in a new issue