diff options
author | unknown <df@pippilotta.erinye.com> | 2007-05-15 11:32:33 +0200 |
---|---|---|
committer | unknown <df@pippilotta.erinye.com> | 2007-05-15 11:32:33 +0200 |
commit | adeaeb5025f9bb7e462973f0a8c0f1f43af9a3e9 (patch) | |
tree | 0ea40bdc5e97812b1fe4f870a963bf7561862070 /mysql-test/mysql-test-run.pl | |
parent | edccb4c29ed83abe139f6faf215591bd7fe3a104 (diff) | |
download | mariadb-git-adeaeb5025f9bb7e462973f0a8c0f1f43af9a3e9.tar.gz |
BUG#28370 federated test cases fail with binlog disabled
mysql-test/include/federated.inc:
BUG#28370 all federated tests require --log-bin for now
mysql-test/mysql-test-run.pl:
BUG#28370 detect --skip-log-bin option in mtr's --mysqld option
mysql-test/r/have_log_bin.require:
the variable is really called log_bin
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index c494626bbae..6bf35410783 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -3740,8 +3740,7 @@ sub mysqld_arguments ($$$$) { "%s--log-slow-queries=%s-slow.log", $prefix, $log_base_path); # 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, @opt_extra_mysqld_opt); if ( $mysqld->{'type'} eq 'master' ) { if (! ($opt_skip_master_binlog || $skip_binlog) ) |