diff options
author | Michael Widenius <monty@askmonty.org> | 2013-06-23 12:15:43 +0300 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2013-06-23 12:15:43 +0300 |
commit | 4aa9b285bbf1a1fda2596e31ba1771405862e1e8 (patch) | |
tree | c09d517d5fe9d14eb6f49f052ec57b8b89023aa8 | |
parent | 5f4e0e87673317f3f20dff68c429f1d816e89a15 (diff) | |
download | mariadb-git-4aa9b285bbf1a1fda2596e31ba1771405862e1e8.tar.gz |
Added option to avoid warnings from innodb
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index ea22f9577e9..380a17588c1 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -3453,6 +3453,7 @@ sub mysql_install_db { mtr_add_arg($args, "--skip-$_") for @optional_plugins; # starting from 10.0 bootstrap scripts require InnoDB mtr_add_arg($args, "--loose-innodb"); + mtr_add_arg($args, "--loose-innodb-log-file-size=5M"); mtr_add_arg($args, "--disable-sync-frm"); mtr_add_arg($args, "--tmpdir=%s", "$opt_vardir/tmp/"); mtr_add_arg($args, "--core-file"); |