diff options
Diffstat (limited to 'sql/log.cc')
-rw-r--r-- | sql/log.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sql/log.cc b/sql/log.cc index bcac7267f8b..240965fdca3 100644 --- a/sql/log.cc +++ b/sql/log.cc @@ -1878,11 +1878,10 @@ void MYSQL_LOG::set_max_size(ulong max_size_arg) Disable_binlog::Disable_binlog(THD *thd_arg) : - thd(thd_arg), - save_options(thd_arg->options) + thd(thd_arg), save_options(thd_arg->options) { thd_arg->options&= ~OPTION_BIN_LOG; -}; +} Disable_binlog::~Disable_binlog() |