Binlogserver sends GTID_LIST Fake Event when a MariaDB 10 slave connects with GTID

Now sending GTID_LIST Fake Event when a MariaDB10 Slave connects with
GTID
This commit is contained in:
MassimilianoPinto
2017-04-05 15:22:01 +02:00
parent ce6b52ab39
commit e0a12820b6
3 changed files with 204 additions and 2 deletions

View File

@ -559,6 +559,14 @@ typedef struct mariadb_gtid_info
uint64_t end; /** The next_pos in COMMIT event*/
} MARIADB_GTID_INFO;
/** MariaDB GTID elements */
typedef struct mariadb_gtid_elems
{
uint32_t domain_id; /*< The replication domain */
uint32_t server_id; /*< The serverid */
uint64_t seq_no; /*< The sequence number */
} MARIADB_GTID_ELEMS;
/**
* The per instance data for the router.
*/