1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-30 11:22:14 +03:00

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.
This commit is contained in:
mats@kindahl-laptop.dnsalias.net
2007-06-02 21:01:30 +02:00
parent acd19de63d
commit 2bcbb7dafc

View File

@@ -3295,7 +3295,7 @@ with --log-bin instead.");
}
else
{
global_system_variables.binlog_format= BINLOG_FORMAT_UNSPEC;
global_system_variables.binlog_format= BINLOG_FORMAT_MIXED;
}
else
if (opt_binlog_format_id == BINLOG_FORMAT_UNSPEC)