Commit 719da2c4 authored by Vlad Lesin's avatar Vlad Lesin

MDEV-22810 mariabackup does not honor open_files_limit from option during backup prepare

open_files_limit option was processed only for --backup, but not for
--prepare.
parent aebb1112
......@@ -5811,6 +5811,10 @@ static bool xtrabackup_prepare_func(char** argv)
ut_ad(inc_dir_tables_hash);
}
msg("open files limit requested %u, set to %u",
(uint) xb_open_files_limit,
xb_set_max_open_files(xb_open_files_limit));
/* Fix DDL for prepare. Process .del,.ren, and .new files.
The order in which files are processed, is important
(see MDEV-18185, MDEV-18201)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment