diff options
author | unknown <mats@romeo.(none)> | 2007-03-22 08:32:41 +0100 |
---|---|---|
committer | unknown <mats@romeo.(none)> | 2007-03-22 08:32:41 +0100 |
commit | 8666675fa95229f1e77c0adc24b5b2f03bd0de6e (patch) | |
tree | bba4531b8c9f8171e5ef1a8e35958997f3ea5c3d /sql/rpl_rli.h | |
parent | 4b00b3f0cecbaaa8b89b3a2e0af95e5fb1da80f4 (diff) | |
download | mariadb-git-8666675fa95229f1e77c0adc24b5b2f03bd0de6e.tar.gz |
BUG#23171: Illegal group log position
Tail fixes after re-applying patches to older version of clone.
sql/log_event.cc:
Name change of shall_skip() -> do_shall_skip()
Introducing public shall_skip().
Name change of skip reason enumeration constants.
Removing extreneous argument to slave_print_msg() causing compiler warning.
sql/log_event.h:
Adding enumeration for skip reason.
Factoring out exec_event() into exec_relay_log_event().
Making public interface to event execution primitives.
Adding documentation.
Making some (internal) functions const-correct.
sql/rpl_rli.cc:
replicate_same_server_id is now a member variable of RLI.
sql/rpl_rli.h:
replicate_same_server_id is now a member variable of RLI.
sql/slave.cc:
Using RLI-specific member variable replicate_same_server_id instead of
global instance.
Moving comments about skipping logic to exec_relay_log_event().
Moving event execution logic to exec_relay_log_event().
sql/sql_binlog.cc:
Using apply_event() directly and adding comment with explenation.
Diffstat (limited to 'sql/rpl_rli.h')
-rw-r--r-- | sql/rpl_rli.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/rpl_rli.h b/sql/rpl_rli.h index ed9ef3a9115..6365df8cec5 100644 --- a/sql/rpl_rli.h +++ b/sql/rpl_rli.h @@ -57,6 +57,15 @@ typedef struct st_relay_log_info */ bool no_storage; + /* + If true, events with the same server id should be replicated. This + field is set on creation of a relay log info structure by copying + the value of ::replicate_same_server_id and can be overridden if + necessary. For example of when this is done, check sql_binlog.cc, + where the BINLOG statement can be used to execute "raw" events. + */ + bool replicate_same_server_id; + /*** The following variables can only be read when protect by data lock ****/ /* |