mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
After-merge fix for merge of MySQL 5.1.41 into MariaDB: Valgrind fixes.
mysql-test/mysql-test-run.pl: Fix Valgrind warnings: add more post-shutdown warning suppressions, and revert bad previous change. sql/log_event.cc: Manually apply fix for Bug#48340 (basically missing initialisation of thd->lex->local_file in Load_log_event::do_apply_event())
This commit is contained in:
@ -223,7 +223,7 @@ my $opt_strace_client;
|
||||
our $opt_user = "root";
|
||||
|
||||
my $opt_valgrind= 0;
|
||||
my $opt_valgrind_mysqld= 0;
|
||||
our $opt_valgrind_mysqld= 0;
|
||||
my $opt_valgrind_mysqltest= 0;
|
||||
my @default_valgrind_args= ("--show-reachable=yes");
|
||||
my @valgrind_args;
|
||||
@ -3990,6 +3990,8 @@ sub extract_warning_lines ($) {
|
||||
qr/unknown variable 'loose-/,
|
||||
qr/Now setting lower_case_table_names to [02]/,
|
||||
qr/deprecated/,
|
||||
qr/Slave SQL thread retried transaction/,
|
||||
qw/Slave \(additional info\)/,
|
||||
);
|
||||
|
||||
my $match_count= 0;
|
||||
|
Reference in New Issue
Block a user