diff options
author | Monty <monty@mariadb.org> | 2015-11-09 15:07:13 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2015-11-10 13:46:57 +0200 |
commit | 78771189e769cf5f1444c2c51a3813d45ac120e2 (patch) | |
tree | b888aaa71818f620a6693500fcc33394e37a3efe /sql/log_event.h | |
parent | 78ffeaa988916ce6295fd1a0617c5fa707d5bcc9 (diff) | |
download | mariadb-git-78771189e769cf5f1444c2c51a3813d45ac120e2.tar.gz |
Ignore MySQL 5.7 log events not relevant for MariaDB
- XA
- Transaction_context_event (used by MysQL group replication)
- View change event (used by MysQL group replication)
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index 498aa8d8d28..bc850c22a14 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -653,6 +653,11 @@ enum Log_event_type ANONYMOUS_GTID_LOG_EVENT= 34, PREVIOUS_GTIDS_LOG_EVENT= 35, + /* MySQL 5.7 events, ignored by MariaDB */ + TRANSACTION_CONTEXT_EVENT= 36, + VIEW_CHANGE_EVENT= 37, + XA_PREPARE_LOG_EVENT= 38, + /* Add new events here - right above this comment! Existing events (except ENUM_END_EVENT) should never change their numbers |