diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-10-29 08:33:57 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-10-29 08:33:57 +0100 |
commit | 4bb48f922be3c988377867b884f9dc64af685557 (patch) | |
tree | 48cb77af675ff4ddc0ff0d1fd995f5562cdc00d6 /mysql-test/lib/v1 | |
parent | bba8b263c2f80f1a52c3ed71f0d7fb70ca9599d9 (diff) | |
download | mariadb-git-4bb48f922be3c988377867b884f9dc64af685557.tar.gz |
MDEV-3820 MTR1 produces bootstrap SQL file with wrong syntax, server bootstrap fails
Diffstat (limited to 'mysql-test/lib/v1')
-rwxr-xr-x | mysql-test/lib/v1/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/v1/mysql-test-run.pl b/mysql-test/lib/v1/mysql-test-run.pl index f20eab80ae9..41247366c4b 100755 --- a/mysql-test/lib/v1/mysql-test-run.pl +++ b/mysql-test/lib/v1/mysql-test-run.pl @@ -3223,7 +3223,7 @@ sub install_db ($$) { my $bootstrap_sql_file= "$opt_vardir/tmp/bootstrap.sql"; # Use the mysql database for system tables - mtr_tofile($bootstrap_sql_file, "use mysql"); + mtr_tofile($bootstrap_sql_file, "use mysql;\n"); # Add the offical mysql system tables # for a production system |