diff options
author | unknown <msvensson@pilot.(none)> | 2007-06-08 16:20:24 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.(none)> | 2007-06-08 16:20:24 +0200 |
commit | 6bb66c75daf9366ca8e376b8104eb8d0084a2ce3 (patch) | |
tree | d47b59a3cb9d68056b6e4496e2eac3536b8f0807 | |
parent | 928e00b8d860fd55d60bd4f38336220af30c121f (diff) | |
download | mariadb-git-6bb66c75daf9366ca8e376b8104eb8d0084a2ce3.tar.gz |
Turn off use of bin log when running with embedded server
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 24931955867..2304a40978c 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -903,6 +903,9 @@ sub command_line_setup () { $opt_skip_ndbcluster= 1; # Turn off use of NDB cluster $opt_skip_ssl= 1; # Turn off use of SSL + # Turn off use of bin log + push(@opt_extra_mysqld_opt, "--skip-log-bin"); + if ( $opt_extern ) { mtr_error("Can't use --extern with --embedded-server"); |