1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Generate a unique tmpdir for each server to avoid that they delete each others

temporary files at start up - see 'mysql_rm_tmp_tables'
This commit is contained in:
msvensson@shellback.(none)
2008-05-06 17:11:09 +02:00
parent 39e11a1ddb
commit c45e9ff746
2 changed files with 12 additions and 2 deletions

View File

@ -3816,6 +3816,10 @@ sub start_servers($) {
mtr_error("Failed to copy system db to '$datadir'")
unless -d $datadir;
# Create the servers tmpdir
my $tmpdir= $mysqld->value('tmpdir');
mkpath($tmpdir) unless -d $tmpdir;
# Write start of testcase to log file
mark_log($mysqld->value('log-error'), $tinfo);