Loading mysql-test/include/delete_anonymous_users.inc +2 −0 Original line number Diff line number Diff line # Remove anonymous users added by add_anonymous_users.inc disable_warnings; disable_query_log; DELETE FROM mysql.user where host='localhost' and user=''; FLUSH PRIVILEGES; enable_query_log; enable_warnings; mysql-test/lib/mtr_report.pl +10 −3 Original line number Diff line number Diff line Loading @@ -375,9 +375,16 @@ sub mtr_report_stats ($) { /Slave: Cannot add or update a child row: a foreign key constraint fails .* Error_code: 1452/ )) or # rpl_skip_error produce an error which is skipped (slave does not stop) ($testname eq 'rpl.rpl_skip_error' and /Failed to write to mysql\.general_log/) # rpl_skip_error and binlog_killed_simulate produce an error which is skipped (slave does not stop) (($testname eq 'rpl.rpl_skip_error' or $testname eq 'binlog.binlog_killed_simulate') and (/Failed to write to mysql\.general_log/ )) or # rpl_temporary has an error on slave that can be ignored ($testname eq 'rpl.rpl_temporary' and (/Slave: Can\'t find record in \'user\' Error_code: 1032/ )) ) { next; # Skip these lines Loading Loading
mysql-test/include/delete_anonymous_users.inc +2 −0 Original line number Diff line number Diff line # Remove anonymous users added by add_anonymous_users.inc disable_warnings; disable_query_log; DELETE FROM mysql.user where host='localhost' and user=''; FLUSH PRIVILEGES; enable_query_log; enable_warnings;
mysql-test/lib/mtr_report.pl +10 −3 Original line number Diff line number Diff line Loading @@ -375,9 +375,16 @@ sub mtr_report_stats ($) { /Slave: Cannot add or update a child row: a foreign key constraint fails .* Error_code: 1452/ )) or # rpl_skip_error produce an error which is skipped (slave does not stop) ($testname eq 'rpl.rpl_skip_error' and /Failed to write to mysql\.general_log/) # rpl_skip_error and binlog_killed_simulate produce an error which is skipped (slave does not stop) (($testname eq 'rpl.rpl_skip_error' or $testname eq 'binlog.binlog_killed_simulate') and (/Failed to write to mysql\.general_log/ )) or # rpl_temporary has an error on slave that can be ignored ($testname eq 'rpl.rpl_temporary' and (/Slave: Can\'t find record in \'user\' Error_code: 1032/ )) ) { next; # Skip these lines Loading