mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
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.
This commit is contained in:
parent
90ce95de4b
commit
691c306953
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue