Commit f2739e2a authored by Marko Mäkelä's avatar Marko Mäkelä

Merge 10.4 into 10.5

parents 07757174 688fb630
...@@ -23,7 +23,6 @@ numa_interleave=0 ...@@ -23,7 +23,6 @@ numa_interleave=0
wsrep_on=0 wsrep_on=0
dry_run=0 dry_run=0
defaults_group_suffix= defaults_group_suffix=
ignore_unknown=1
# Initial logging status: error log is not open, and not using syslog # Initial logging status: error log is not open, and not using syslog
logging=init logging=init
...@@ -371,22 +370,11 @@ parse_arguments() { ...@@ -371,22 +370,11 @@ parse_arguments() {
--help) usage ;; --help) usage ;;
--ignore-unknown) ignore_unknown=1 ;;
--no-ignore-unknown|--not-ignore-unknown) ignore_unknown=0 ;;
*) *)
if test $ignore_unknown -eq 0 case "$unrecognized_handling" in
then collect) append_arg_to_args "$arg" ;;
case "$unrecognized_handling" in complain) log_error "unknown option '$arg'" ;;
collect) append_arg_to_args "$arg" ;; esac
complain) log_error "unknown option '$arg'"
esac
else
case "$arg" in
"--loose-"*) append_arg_to_args "$arg" ;;
*) append_arg_to_args "--loose-$arg"
esac
fi
esac esac
done done
} }
......
...@@ -1496,21 +1496,27 @@ void fil_system_t::create(ulint hash_size) ...@@ -1496,21 +1496,27 @@ void fil_system_t::create(ulint hash_size)
void fil_system_t::close() void fil_system_t::close()
{ {
ut_ad(this == &fil_system); ut_ad(this == &fil_system);
ut_a(!UT_LIST_GET_LEN(LRU)); ut_a(!UT_LIST_GET_LEN(LRU));
ut_a(unflushed_spaces.empty()); ut_a(unflushed_spaces.empty());
ut_a(!UT_LIST_GET_LEN(space_list)); ut_a(!UT_LIST_GET_LEN(space_list));
ut_ad(!sys_space); ut_ad(!sys_space);
ut_ad(!temp_space); ut_ad(!temp_space);
if (is_initialised())
{
m_initialised= false;
spaces.free();
mutex_free(&mutex);
fil_space_crypt_cleanup();
}
if (is_initialised()) { ut_ad(!spaces.array);
m_initialised = false;
spaces.free();
mutex_free(&mutex);
fil_space_crypt_cleanup();
}
ut_ad(!spaces.array); #ifdef UNIV_LINUX
ssd.clear();
ssd.shrink_to_fit();
#endif /* UNIV_LINUX */
} }
/** Opens all system tablespace data files. They stay open until the /** Opens all system tablespace data files. They stay open until the
......
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