diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-05-01 14:05:44 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-05-01 14:05:44 +0200 |
commit | 302e4776e0be6b71512446c1bd6a3541b08b8350 (patch) | |
tree | deaf0c934e13bcbdcb41747058460a54c9cac347 /sql/log_event.h | |
parent | 4544e60d298b29a10baa7d5cbb55313e923c16e2 (diff) | |
download | mariadb-git-302e4776e0be6b71512446c1bd6a3541b08b8350.tar.gz |
comments
Diffstat (limited to 'sql/log_event.h')
-rw-r--r-- | sql/log_event.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sql/log_event.h b/sql/log_event.h index bba1b907a57..11cbfd191f2 100644 --- a/sql/log_event.h +++ b/sql/log_event.h @@ -663,7 +663,8 @@ enum Log_event_type PRE_GA_DELETE_ROWS_EVENT = 22, /* - These event numbers are used from 5.1.16 until mysql-trunk-xx + These event numbers are used from 5.1.16 until mysql-5.6.6, + and in MariaDB */ WRITE_ROWS_EVENT_V1 = 23, UPDATE_ROWS_EVENT_V1 = 24, @@ -685,11 +686,13 @@ enum Log_event_type data to the slave: data that a slave can handle in case there is code for handling it, but which can be ignored if it is not recognized. + + These mysql-5.6 events are not recognized (and ignored) by MariaDB */ IGNORABLE_LOG_EVENT= 28, ROWS_QUERY_LOG_EVENT= 29, - /* Version 2 of the Row events */ + /* Version 2 of the Row events, generated only by mysql-5.6.6+ */ WRITE_ROWS_EVENT = 30, UPDATE_ROWS_EVENT = 31, DELETE_ROWS_EVENT = 32, |