summaryrefslogtreecommitdiff
path: root/sql/log.cc
diff options
context:
space:
mode:
authorguilhem@mysql.com <>2004-08-19 00:29:11 +0200
committerguilhem@mysql.com <>2004-08-19 00:29:11 +0200
commit42d30b758baa6fd311e4982b2b79769996a8f0be (patch)
tree5f14b2fd33c3cd02c49d782f486537714c44bf79 /sql/log.cc
parent32f905f73c6323b24903e33c7c24258a5d06779c (diff)
downloadmariadb-git-42d30b758baa6fd311e4982b2b79769996a8f0be.tar.gz
Fix for BUG#4971 "CREATE TABLE ... TYPE=HEAP SELECT ... stops slave (wrong DELETE in binlog)":
replacing the no_log argument of mysql_create_table() by some safer method (temporarily setting OPTION_BIN_LOG to 0) which guarantees that even the automatic DELETE FROM heap_table does not get into the binlog when a not-yet-existing HEAP table is opened by mysql_create_table().
Diffstat (limited to 'sql/log.cc')
-rw-r--r--sql/log.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/sql/log.cc b/sql/log.cc
index e031656cc6e..2956efc047f 100644
--- a/sql/log.cc
+++ b/sql/log.cc
@@ -1627,6 +1627,22 @@ 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), save_master_access(thd_arg->master_access)
+{
+ thd_arg->options&= ~OPTION_BIN_LOG;
+ thd_arg->master_access|= SUPER_ACL; // unneeded in 4.1
+};
+
+
+Disable_binlog::~Disable_binlog()
+{
+ thd->options= save_options;
+ thd->master_access= save_master_access;
+}
+
+
/*
Check if a string is a valid number