8 Jan
2025
8 Jan
'25
5:31 p.m.
Sergei Golubchik <serg@mariadb.org> writes:
Mostly ok, but I'd prefer not to access max_binlog_size without any protection, so suggest to do something like
ulong saved= max_binlog_size; mysql_mutex_unlock(&LOCK_global_system_variables); mysql_bin_log.set_max_size(saved); mysql_mutex_lock(&LOCK_global_system_variables);
Makes sense, thanks Serg! - Kristian.