Skip to content
Permalink
Browse files
MDEV-14033: wsrep_on=off + binlog = mixed on MariaDB 10.2.9
If wsrep provider (i.e. galera library) is defined but wsrep_on=OFF
we should not force row binlog row format.
  • Loading branch information
Jan Lindström committed Mar 13, 2019
1 parent 90ce95d commit 691c306
Showing 1 changed file with 1 addition and 1 deletion.
@@ -9494,7 +9494,7 @@ static int get_options(int *argc_ptr, char ***argv_ptr)
else
global_system_variables.option_bits&= ~OPTION_BIG_SELECTS;

if (!opt_bootstrap && WSREP_PROVIDER_EXISTS &&
if (!opt_bootstrap && WSREP_PROVIDER_EXISTS && WSREP_ON &&
global_system_variables.binlog_format != BINLOG_FORMAT_ROW)
{

0 comments on commit 691c306

Please sign in to comment.