From 38ae09760b8fdfc93ffba0c8e9f8a84787bf71be Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 6 Feb 2007 16:38:32 +0100 Subject: [PATCH] Correct the non working check for --skip-log-bin in "extra_opt" --- mysql-test/mysql-test-run.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index ba792c38f42..2c66b148dcd 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -3601,7 +3601,7 @@ sub mysqld_arguments ($$$$$) { } # Check if "extra_opt" contains --skip-log-bin - my $skip_binlog= grep('--skip-log-bin', @$extra_opt); + my $skip_binlog= grep(/^--skip-log-bin/, @$extra_opt); if ( $type eq 'master' ) {