mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Bug#41480 Tests that do LOAD DATA INFILE fail when run locally
mysql-test/lib/My/File/Path.pm: Extend 'copytree' to take an optional "umask" parameter that will be used while copying the files mysql-test/mysql-test-run.pl: Pass umask 0022 to copytree so that the copied files will be created world readable and the mysqld can LOAD DATA INFILE them
This commit is contained in:
@ -1981,8 +1981,8 @@ sub setup_vardir() {
|
||||
}
|
||||
|
||||
# copy all files from std_data into var/std_data
|
||||
# and make them writable
|
||||
copytree("$glob_mysql_test_dir/std_data", "$opt_vardir/std_data");
|
||||
# and make them world readable
|
||||
copytree("$glob_mysql_test_dir/std_data", "$opt_vardir/std_data", "0022");
|
||||
|
||||
# Remove old log files
|
||||
foreach my $name (glob("r/*.progress r/*.log r/*.warnings"))
|
||||
|
Reference in New Issue
Block a user