diff options
author | unknown <knielsen@knielsen-hq.org> | 2013-02-22 12:31:55 +0100 |
---|---|---|
committer | unknown <knielsen@knielsen-hq.org> | 2013-02-22 12:31:55 +0100 |
commit | 2cf3d61fc23053c1a1acc412599cab350ceb31eb (patch) | |
tree | 40efa2bd5c0a6616850f8ce1b75af5455fe48dc0 /sql/log_event.h | |
parent | fff47f40f6588bf723e25d3c47f52bddac18a956 (diff) | |
download | mariadb-git-2cf3d61fc23053c1a1acc412599cab350ceb31eb.tar.gz |
MDEV-26: Global Transaction ID
- Fix skipping initial MyISAM DML when connecting using GTID.
- Fix RESET MASTER not clearing in-memory binlog state.
- Fix not reading standalone flag in Gtid_log_event::peek().
- Fix skipping DDL that the slave has already seen when using GTID position.
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index e769a9df299..89f2d37e714 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -1913,6 +1913,8 @@ public: /* !!! Public in this patch to allow old usage */ int do_apply_event(Relay_log_info const *rli, const char *query_arg, uint32 q_len_arg); + static bool peek_is_commit_rollback(const char *event_start, + size_t event_len); #endif /* HAVE_REPLICATION */ /* If true, the event always be applied by slave SQL thread or be printed by |