diff options
author | unknown <guilhem@mysql.com> | 2004-04-28 18:24:46 +0200 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2004-04-28 18:24:46 +0200 |
commit | 078bda30da1d29950032117087a5bb8aeb487c95 (patch) | |
tree | 4dc6a90359310c5dfb787550d9255ad52964cc27 /sql/slave.h | |
parent | 047ecf9f5beba38124d6558557e3794ccb164d75 (diff) | |
download | mariadb-git-078bda30da1d29950032117087a5bb8aeb487c95.tar.gz |
A new option --replicate-same-server-id to force a slave to execute queries originating from itself
(WL#794). This can be of interest in some recovery-from-backup scenarios, and also when you have
two databases in one mysqld, having a certain similarity and you want one db to be updated when the other is
(some sort of trigger).
Plus small fix for BUG#3568 "MySQL server crashes when built --with-debug and CHANGE MASTER +MASTER_POS_WAIT"
sql/mysqld.cc:
new option --replicate-same-server-id
sql/slave.cc:
new option replicate_same_server_id, to force a slave to execute its own queries.
Small fix for BUG#3568 "MySQL server crashes when built --with-debug and CHANGE MASTER +MASTER_POS_WAIT"
sql/slave.h:
new option --replicate-same-server-id
Diffstat (limited to 'sql/slave.h')
-rw-r--r-- | sql/slave.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/slave.h b/sql/slave.h index 979c63af201..0cd8545338d 100644 --- a/sql/slave.h +++ b/sql/slave.h @@ -418,7 +418,7 @@ extern HASH replicate_do_table, replicate_ignore_table; extern DYNAMIC_ARRAY replicate_wild_do_table, replicate_wild_ignore_table; extern bool do_table_inited, ignore_table_inited, wild_do_table_inited, wild_ignore_table_inited; -extern bool table_rules_on; +extern bool table_rules_on, replicate_same_server_id; extern int disconnect_slave_event_count, abort_slave_event_count ; |