From 4b472d9a13b64a31d6754f30a3134c344bfcea30 Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Wed, 8 Mar 2017 09:29:21 +0100 Subject: [PATCH] MXS-1075: file field added to MARIADB_GTID_INFO MXS-1075: missing field added to MARIADB_GTID_INFO --- server/modules/routing/binlogrouter/blr.h | 1 + 1 file changed, 1 insertion(+) diff --git a/server/modules/routing/binlogrouter/blr.h b/server/modules/routing/binlogrouter/blr.h index ee1861aaf..7427fae10 100644 --- a/server/modules/routing/binlogrouter/blr.h +++ b/server/modules/routing/binlogrouter/blr.h @@ -547,6 +547,7 @@ typedef struct pending_transaction typedef struct mariadb_gtid_info { char *gtid; /** MariaDB 10.x GTID */ + char *file; /** The binlog file */ uint64_t start; /** The BEGIN pos */ uint64_t end; /** The next_pos in COMMIT event*/ } MARIADB_GTID_INFO;