Commit 9180b9c0 authored by unknown's avatar unknown

BUG#28752 (binlog_format variable is empty when binlog is turned off):

Setting MIXED format instead of UNSPECIFIED format when server is
started without log-bin.


sql/mysqld.cc:
  Setting MIXED format instead of UNSPECIFIED format when server is
  started without log-bin.
parent afd49222
...@@ -3295,7 +3295,7 @@ with --log-bin instead."); ...@@ -3295,7 +3295,7 @@ with --log-bin instead.");
} }
else else
{ {
global_system_variables.binlog_format= BINLOG_FORMAT_UNSPEC; global_system_variables.binlog_format= BINLOG_FORMAT_MIXED;
} }
else else
if (opt_binlog_format_id == BINLOG_FORMAT_UNSPEC) if (opt_binlog_format_id == BINLOG_FORMAT_UNSPEC)
......
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