From aac601f1e8219dc8707feca79368a14f8f39509a Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Tue, 13 Jun 2017 13:48:35 +0200 Subject: [PATCH] MXS-1266: removed old code MXS-1266: removed old code --- server/modules/routing/binlogrouter/blr_master.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/server/modules/routing/binlogrouter/blr_master.c b/server/modules/routing/binlogrouter/blr_master.c index f4f5bd67d..53b3a75b3 100644 --- a/server/modules/routing/binlogrouter/blr_master.c +++ b/server/modules/routing/binlogrouter/blr_master.c @@ -3104,13 +3104,6 @@ static void blr_register_mariadb_gtid_request(ROUTER_INSTANCE *router, GWBUF *buf) { const char format_gtid_val[] = "SET @slave_connect_state='%s'"; - // Extract GTID domain - char *val = blr_extract_column(buf, 1); - // Store the Master GTID domain - router->mariadb10_gtid_domain = atol(val); - MXS_FREE(val); - // Don't save the server response - gwbuf_free(buf); // SET the requested GTID char set_gtid[GTID_MAX_LEN + sizeof(format_gtid_val)];