Addition of MARIADB10_START_ENCRYPTION_EVENT

Addition of MARIADB10_START_ENCRYPTION_EVENT and its description in
event_names_mariadb10 array
This commit is contained in:
MassimilianoPinto
2016-09-16 09:49:17 +02:00
parent 5ba7dd49ed
commit 8e5fa51efa
2 changed files with 6 additions and 2 deletions

View File

@ -36,6 +36,7 @@
* 24/08/16 Massimiliano Pinto Added slave notification state CS_WAIT_DATA. * 24/08/16 Massimiliano Pinto Added slave notification state CS_WAIT_DATA.
* State CS_UPTODATE removed. * State CS_UPTODATE removed.
* 01/09/2016 Massimiliano Pinto Added support for ANNOTATE_ROWS_EVENT in COM_BINLOG_DUMP * 01/09/2016 Massimiliano Pinto Added support for ANNOTATE_ROWS_EVENT in COM_BINLOG_DUMP
* 16/09/2016 Massimiliano Pinto Addition of MARIADB10_START_ENCRYPTION_EVENT 0xa4
* *
* @endverbatim * @endverbatim
*/ */
@ -105,8 +106,9 @@
#define MARIADB10_BINLOG_CHECKPOINT_EVENT 0xa1 #define MARIADB10_BINLOG_CHECKPOINT_EVENT 0xa1
#define MARIADB10_GTID_EVENT 0xa2 #define MARIADB10_GTID_EVENT 0xa2
#define MARIADB10_GTID_GTID_LIST_EVENT 0xa3 #define MARIADB10_GTID_GTID_LIST_EVENT 0xa3
#define MARIADB10_START_ENCRYPTION_EVENT 0xa4
#define MAX_EVENT_TYPE_MARIADB10 0xa3 #define MAX_EVENT_TYPE_MARIADB10 0xa4
/* Maximum event type so far */ /* Maximum event type so far */
#define MAX_EVENT_TYPE_END MAX_EVENT_TYPE_MARIADB10 #define MAX_EVENT_TYPE_END MAX_EVENT_TYPE_MARIADB10

View File

@ -51,6 +51,7 @@
* 11/07/2016 Massimiliano Pinto Added SSL backend support * 11/07/2016 Massimiliano Pinto Added SSL backend support
* 22/07/2016 Massimiliano Pinto Added semi_sync replication support * 22/07/2016 Massimiliano Pinto Added semi_sync replication support
* 24/08/2016 Massimiliano Pinto Added slave notification via CS_WAIT_DATA new state * 24/08/2016 Massimiliano Pinto Added slave notification via CS_WAIT_DATA new state
* 16/08/2016 Massimiliano Pinto Addition of Start Encription Event description
* *
* @endverbatim * @endverbatim
*/ */
@ -1117,7 +1118,8 @@ static char *event_names_mariadb10[] =
/* New MariaDB 10.x event numbers */ /* New MariaDB 10.x event numbers */
"Binlog Checkpoint Event", "Binlog Checkpoint Event",
"GTID Event", "GTID Event",
"GTID List Event" "GTID List Event",
"Start Encryption Event"
}; };
/** /**