From e99a32999fb26b623e11c7c49710c8996dbe6b27 Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Tue, 24 Nov 2020 13:15:42 +0300 Subject: [PATCH 01/10] parser: add GTID support (WIP) --- .../parser/conversion/conversion.go | 7 +- .../binlog-parser/parser/messages/message.go | 4 +- .../parser/parser/binlog_to_messages.go | 132 ++++++++++-------- 3 files changed, 84 insertions(+), 59 deletions(-) diff --git a/src/zalora/binlog-parser/parser/conversion/conversion.go b/src/zalora/binlog-parser/parser/conversion/conversion.go index c3d3f82..557cefc 100644 --- a/src/zalora/binlog-parser/parser/conversion/conversion.go +++ b/src/zalora/binlog-parser/parser/conversion/conversion.go @@ -22,13 +22,14 @@ func NewRowsEventData(binlogEventHeader replication.EventHeader, binlogEvent rep } } -func ConvertQueryEventToMessage(binlogEventHeader replication.EventHeader, binlogEvent replication.QueryEvent) messages.Message { +func ConvertQueryEventToMessage(gtid string, binlogEventHeader replication.EventHeader, binlogEvent replication.QueryEvent) messages.Message { header := messages.NewMessageHeader( string(binlogEvent.Schema), "(unknown)", time.Unix(int64(binlogEventHeader.Timestamp), 0), binlogEventHeader.LogPos, 0, + gtid, ) message := messages.NewQueryMessage( @@ -39,7 +40,8 @@ func ConvertQueryEventToMessage(binlogEventHeader replication.EventHeader, binlo return messages.Message(message) } -func ConvertRowsEventsToMessages(xId uint64, rowsEventsData []RowsEventData) []messages.Message { + +func ConvertRowsEventsToMessages(gtid string, xId uint64, rowsEventsData []RowsEventData) []messages.Message { var ret []messages.Message for _, d := range rowsEventsData { @@ -51,6 +53,7 @@ func ConvertRowsEventsToMessages(xId uint64, rowsEventsData []RowsEventData) []m time.Unix(int64(d.BinlogEventHeader.Timestamp), 0), d.BinlogEventHeader.LogPos, xId, + gtid, ) switch d.BinlogEventHeader.EventType { diff --git a/src/zalora/binlog-parser/parser/messages/message.go b/src/zalora/binlog-parser/parser/messages/message.go index b5e204d..dc4b0e7 100644 --- a/src/zalora/binlog-parser/parser/messages/message.go +++ b/src/zalora/binlog-parser/parser/messages/message.go @@ -19,15 +19,17 @@ type MessageHeader struct { BinlogMessageTime string BinlogPosition uint32 XId uint64 + GTID string } -func NewMessageHeader(schema string, table string, binlogMessageTime time.Time, binlogPosition uint32, xId uint64) MessageHeader { +func NewMessageHeader(schema string, table string, binlogMessageTime time.Time, binlogPosition uint32, xId uint64, gtid string) MessageHeader { return MessageHeader{ Schema: schema, Table: table, BinlogMessageTime: binlogMessageTime.UTC().Format(time.RFC3339), BinlogPosition: binlogPosition, XId: xId, + GTID: gtid, } } diff --git a/src/zalora/binlog-parser/parser/parser/binlog_to_messages.go b/src/zalora/binlog-parser/parser/parser/binlog_to_messages.go index fe42626..ef26037 100644 --- a/src/zalora/binlog-parser/parser/parser/binlog_to_messages.go +++ b/src/zalora/binlog-parser/parser/parser/binlog_to_messages.go @@ -1,6 +1,8 @@ package parser import ( + "fmt" + "github.com/satori/go.uuid" "github.com/golang/glog" "github.com/siddontang/go-mysql/replication" "strings" @@ -12,92 +14,110 @@ import ( type ConsumerFunc func(messages.Message) error func ParseBinlogToMessages(binlogFilename string, tableMap database.TableMap, consumer ConsumerFunc) error { - rowRowsEventBuffer := NewRowsEventBuffer() p := replication.NewBinlogParser() - f := func(e *replication.BinlogEvent) error { - switch e.Header.EventType { - case replication.QUERY_EVENT: - queryEvent := e.Event.(*replication.QueryEvent) - query := string(queryEvent.Query) + handler := &eventHandler{ + rowRowsEventBuffer: NewRowsEventBuffer(), + consumer: consumer, + tableMap: tableMap, + } - if strings.ToUpper(strings.Trim(query, " ")) == "BEGIN" { - glog.V(3).Info("Starting transaction") - } else if strings.HasPrefix(strings.ToUpper(strings.Trim(query, " ")), "SAVEPOINT") { - glog.V(3).Info("Skipping transaction savepoint") - } else { - glog.V(3).Info("Query event") + return p.ParseFile(binlogFilename, 0, handler.onEvent) +} - err := consumer(conversion.ConvertQueryEventToMessage(*e.Header, *queryEvent)) +type eventHandler struct { + rowRowsEventBuffer RowsEventBuffer + consumer ConsumerFunc + tableMap database.TableMap + gtid string +} - if err != nil { - return err - } - } +func (h *eventHandler) onEvent(e *replication.BinlogEvent) error { + switch e.Header.EventType { + case replication.GTID_EVENT: + gtidEvent := e.Event.(*replication.GTIDEvent) - break + uid, _ := uuid.FromBytes(gtidEvent.SID) + h.gtid = fmt.Sprintf("%s:%d", uid, gtidEvent.GNO) - case replication.XID_EVENT: - xidEvent := e.Event.(*replication.XIDEvent) - xId := uint64(xidEvent.XID) + case replication.QUERY_EVENT: + queryEvent := e.Event.(*replication.QueryEvent) + query := string(queryEvent.Query) - glog.V(3).Infof("Ending transaction xID %d", xId) + if strings.ToUpper(strings.Trim(query, " ")) == "BEGIN" { + glog.V(3).Info("Starting transaction") + } else if strings.HasPrefix(strings.ToUpper(strings.Trim(query, " ")), "SAVEPOINT") { + glog.V(3).Info("Skipping transaction savepoint") + } else { + glog.V(3).Info("Query event") - for _, message := range conversion.ConvertRowsEventsToMessages(xId, rowRowsEventBuffer.Drain()) { - err := consumer(message) + err := h.consumer(conversion.ConvertQueryEventToMessage(h.gtid, *e.Header, *queryEvent)) - if err != nil { - return err - } + if err != nil { + return err } + } - break + break - case replication.TABLE_MAP_EVENT: - tableMapEvent := e.Event.(*replication.TableMapEvent) + case replication.XID_EVENT: + xidEvent := e.Event.(*replication.XIDEvent) + xId := uint64(xidEvent.XID) - schema := string(tableMapEvent.Schema) - table := string(tableMapEvent.Table) - tableId := uint64(tableMapEvent.TableID) + glog.V(3).Infof("Ending transaction xID %d", xId) - err := tableMap.Add(tableId, schema, table) + for _, message := range conversion.ConvertRowsEventsToMessages(h.gtid, xId, h.rowRowsEventBuffer.Drain()) { + err := h.consumer(message) if err != nil { - glog.Errorf("Failed to add table information for table %s.%s (id %d)", schema, table, tableId) return err } + } - break + break - case replication.WRITE_ROWS_EVENTv1, - replication.UPDATE_ROWS_EVENTv1, - replication.DELETE_ROWS_EVENTv1, - replication.WRITE_ROWS_EVENTv2, - replication.UPDATE_ROWS_EVENTv2, - replication.DELETE_ROWS_EVENTv2: - rowsEvent := e.Event.(*replication.RowsEvent) + case replication.TABLE_MAP_EVENT: + tableMapEvent := e.Event.(*replication.TableMapEvent) - tableId := uint64(rowsEvent.TableID) - tableMetadata, ok := tableMap.LookupTableMetadata(tableId) + schema := string(tableMapEvent.Schema) + table := string(tableMapEvent.Table) + tableId := uint64(tableMapEvent.TableID) - if !ok { - glog.Errorf("Skipping event - no table found for table id %d", tableId) - break - } + err := h.tableMap.Add(tableId, schema, table) - rowRowsEventBuffer.BufferRowsEventData( - conversion.NewRowsEventData(*e.Header, *rowsEvent, tableMetadata), - ) + if err != nil { + glog.Errorf("Failed to add table information for table %s.%s (id %d)", schema, table, tableId) + return err + } - break + break - default: + case replication.WRITE_ROWS_EVENTv1, + replication.UPDATE_ROWS_EVENTv1, + replication.DELETE_ROWS_EVENTv1, + replication.WRITE_ROWS_EVENTv2, + replication.UPDATE_ROWS_EVENTv2, + replication.DELETE_ROWS_EVENTv2: + rowsEvent := e.Event.(*replication.RowsEvent) + + tableId := uint64(rowsEvent.TableID) + tableMetadata, ok := h.tableMap.LookupTableMetadata(tableId) + + if !ok { + glog.Errorf("Skipping event - no table found for table id %d", tableId) break } - return nil + h.rowRowsEventBuffer.BufferRowsEventData( + conversion.NewRowsEventData(*e.Header, *rowsEvent, tableMetadata), + ) + + break + + default: + break } - return p.ParseFile(binlogFilename, 0, f) + return nil } From c6e719775b87382a15819be9e95262b2401143fd Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Mon, 7 Dec 2020 15:29:01 +0300 Subject: [PATCH 02/10] binlog-parser: use %v for boolean format when logging prettyPrintJsonFlag --- src/zalora/binlog-parser/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zalora/binlog-parser/main.go b/src/zalora/binlog-parser/main.go index c38db52..624ab98 100644 --- a/src/zalora/binlog-parser/main.go +++ b/src/zalora/binlog-parser/main.go @@ -49,7 +49,7 @@ func consumerChainFromArgs() parser.ConsumerChain { chain := parser.NewConsumerChain() chain.CollectAsJson(os.Stdout, *prettyPrintJsonFlag) - glog.V(1).Infof("Pretty print JSON %s", *prettyPrintJsonFlag) + glog.V(1).Infof("Pretty print JSON %v", *prettyPrintJsonFlag) if *includeTablesFlag != "" { includeTables := commaSeparatedListToArray(*includeTablesFlag) From 14b56fad188de6e46669c9c44d13565107e8b34d Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Mon, 7 Dec 2020 15:31:09 +0300 Subject: [PATCH 03/10] parser/parser: store GTID in RowsEventBuffer --- .../parser/parser/binlog_to_messages.go | 18 +++++++++++++----- .../parser/parser/rows_event_buffer.go | 18 +++++++++++++++--- 2 files changed, 28 insertions(+), 8 deletions(-) diff --git a/src/zalora/binlog-parser/parser/parser/binlog_to_messages.go b/src/zalora/binlog-parser/parser/parser/binlog_to_messages.go index ef26037..5335cd1 100644 --- a/src/zalora/binlog-parser/parser/parser/binlog_to_messages.go +++ b/src/zalora/binlog-parser/parser/parser/binlog_to_messages.go @@ -30,7 +30,6 @@ type eventHandler struct { rowRowsEventBuffer RowsEventBuffer consumer ConsumerFunc tableMap database.TableMap - gtid string } func (h *eventHandler) onEvent(e *replication.BinlogEvent) error { @@ -38,8 +37,16 @@ func (h *eventHandler) onEvent(e *replication.BinlogEvent) error { case replication.GTID_EVENT: gtidEvent := e.Event.(*replication.GTIDEvent) - uid, _ := uuid.FromBytes(gtidEvent.SID) - h.gtid = fmt.Sprintf("%s:%d", uid, gtidEvent.GNO) + uid, err := uuid.FromBytes(gtidEvent.SID) + if err != nil{ + glog.Errorf("Failed to parse UUID in GTID (%s)", gtidEvent.SID) + return err + } + + gtid := fmt.Sprintf("%s:%d", uid, gtidEvent.GNO) + h.rowRowsEventBuffer.SetGTID(gtid) + + break case replication.QUERY_EVENT: queryEvent := e.Event.(*replication.QueryEvent) @@ -52,7 +59,7 @@ func (h *eventHandler) onEvent(e *replication.BinlogEvent) error { } else { glog.V(3).Info("Query event") - err := h.consumer(conversion.ConvertQueryEventToMessage(h.gtid, *e.Header, *queryEvent)) + err := h.consumer(conversion.ConvertQueryEventToMessage(*e.Header, *queryEvent)) if err != nil { return err @@ -67,7 +74,8 @@ func (h *eventHandler) onEvent(e *replication.BinlogEvent) error { glog.V(3).Infof("Ending transaction xID %d", xId) - for _, message := range conversion.ConvertRowsEventsToMessages(h.gtid, xId, h.rowRowsEventBuffer.Drain()) { + events, gtid := h.rowRowsEventBuffer.Drain() + for _, message := range conversion.ConvertRowsEventsToMessages(gtid, xId, events) { err := h.consumer(message) if err != nil { diff --git a/src/zalora/binlog-parser/parser/parser/rows_event_buffer.go b/src/zalora/binlog-parser/parser/parser/rows_event_buffer.go index e8d7034..435cfd3 100644 --- a/src/zalora/binlog-parser/parser/parser/rows_event_buffer.go +++ b/src/zalora/binlog-parser/parser/parser/rows_event_buffer.go @@ -6,6 +6,7 @@ import ( type RowsEventBuffer struct { buffered []conversion.RowsEventData + gtid string } func NewRowsEventBuffer() RowsEventBuffer { @@ -16,9 +17,20 @@ func (mb *RowsEventBuffer) BufferRowsEventData(d conversion.RowsEventData) { mb.buffered = append(mb.buffered, d) } -func (mb *RowsEventBuffer) Drain() []conversion.RowsEventData { - ret := mb.buffered +func (mb *RowsEventBuffer) SetGTID(gtid string) { + mb.gtid = gtid +} + +func (mb *RowsEventBuffer) GTID() string { + return mb.gtid +} + +func (mb *RowsEventBuffer) Drain() ([]conversion.RowsEventData, string) { + events := mb.buffered + gtid := mb.gtid + mb.buffered = nil + mb.gtid = "" - return ret + return events, gtid } From 369df61ce0832fbcb2c93e7d83384f984455ebac Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Mon, 7 Dec 2020 15:32:05 +0300 Subject: [PATCH 04/10] parser/conversion: set empty GTID for QueryEvent --- src/zalora/binlog-parser/parser/conversion/conversion.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zalora/binlog-parser/parser/conversion/conversion.go b/src/zalora/binlog-parser/parser/conversion/conversion.go index 557cefc..e261d82 100644 --- a/src/zalora/binlog-parser/parser/conversion/conversion.go +++ b/src/zalora/binlog-parser/parser/conversion/conversion.go @@ -22,14 +22,14 @@ func NewRowsEventData(binlogEventHeader replication.EventHeader, binlogEvent rep } } -func ConvertQueryEventToMessage(gtid string, binlogEventHeader replication.EventHeader, binlogEvent replication.QueryEvent) messages.Message { +func ConvertQueryEventToMessage(binlogEventHeader replication.EventHeader, binlogEvent replication.QueryEvent) messages.Message { header := messages.NewMessageHeader( string(binlogEvent.Schema), "(unknown)", time.Unix(int64(binlogEventHeader.Timestamp), 0), binlogEventHeader.LogPos, 0, - gtid, + "", ) message := messages.NewQueryMessage( From eae311000dfe0dc2b7c76cc0d84a896bfb56a4d5 Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Mon, 7 Dec 2020 15:33:04 +0300 Subject: [PATCH 05/10] parser: update tests --- .../parser/consumer_chain_test.go | 4 ++-- .../parser/conversion/conversion_test.go | 9 ++++---- .../parser/messages/message_test.go | 3 ++- .../parser/parser/rows_event_buffer_test.go | 22 ++++++++++++++++--- 4 files changed, 28 insertions(+), 10 deletions(-) diff --git a/src/zalora/binlog-parser/parser/consumer_chain_test.go b/src/zalora/binlog-parser/parser/consumer_chain_test.go index 078c383..917d7b1 100644 --- a/src/zalora/binlog-parser/parser/consumer_chain_test.go +++ b/src/zalora/binlog-parser/parser/consumer_chain_test.go @@ -12,12 +12,12 @@ import ( func TestConsumerChain(t *testing.T) { messageOne := messages.NewQueryMessage( - messages.NewMessageHeader("database_name", "table_name", time.Now(), 100, 100), + messages.NewMessageHeader("database_name", "table_name", time.Now(), 100, 100, "3e11fa47-71ca-11e1-9e33-c80aa9429562:23"), messages.SqlQuery("SELECT * FROM table"), ) messageTwo := messages.NewQueryMessage( - messages.NewMessageHeader("database_name", "table_name", time.Now(), 100, 100), + messages.NewMessageHeader("database_name", "table_name", time.Now(), 100, 100, "3e11fa47-71ca-11e1-9e33-c80aa9429562:23"), messages.SqlQuery("SELECT * FROM table"), ) diff --git a/src/zalora/binlog-parser/parser/conversion/conversion_test.go b/src/zalora/binlog-parser/parser/conversion/conversion_test.go index 74443c7..a578dc0 100644 --- a/src/zalora/binlog-parser/parser/conversion/conversion_test.go +++ b/src/zalora/binlog-parser/parser/conversion/conversion_test.go @@ -31,6 +31,7 @@ func TestConvertQueryEventToMessage(t *testing.T) { func TestConvertRowsEventsToMessages(t *testing.T) { logPos := uint32(100) xId := uint64(200) + gtid := "3e11fa47-71ca-11e1-9e33-c80aa9429562:23" tableMetadata := database.TableMetadata{"db_name", "table_name", map[int]string{0: "field_1", 1: "field_2"}} @@ -47,7 +48,7 @@ func TestConvertRowsEventsToMessages(t *testing.T) { rowsEvent := createRowsEvent([]interface{}{"value_1", "value_2"}, []interface{}{"value_3", "value_4"}) rowsEventData := []RowsEventData{NewRowsEventData(eventHeader, rowsEvent, tableMetadata)} - convertedMessages := ConvertRowsEventsToMessages(xId, rowsEventData) + convertedMessages := ConvertRowsEventsToMessages(gtid, xId, rowsEventData) if len(convertedMessages) != 2 { t.Fatal("Expected 2 insert messages to be created") @@ -83,7 +84,7 @@ func TestConvertRowsEventsToMessages(t *testing.T) { rowsEvent := createRowsEvent([]interface{}{"value_1", "value_2"}, []interface{}{"value_3", "value_4"}) rowsEventData := []RowsEventData{NewRowsEventData(eventHeader, rowsEvent, tableMetadata)} - convertedMessages := ConvertRowsEventsToMessages(xId, rowsEventData) + convertedMessages := ConvertRowsEventsToMessages(gtid, xId, rowsEventData) if len(convertedMessages) != 2 { t.Fatal("Expected 2 delete messages to be created") @@ -119,7 +120,7 @@ func TestConvertRowsEventsToMessages(t *testing.T) { rowsEvent := createRowsEvent([]interface{}{"value_1", "value_2"}, []interface{}{"value_3", "value_4"}) rowsEventData := []RowsEventData{NewRowsEventData(eventHeader, rowsEvent, tableMetadata)} - convertedMessages := ConvertRowsEventsToMessages(xId, rowsEventData) + convertedMessages := ConvertRowsEventsToMessages(gtid, xId, rowsEventData) if len(convertedMessages) != 1 { t.Fatal("Expected 1 update messages to be created") @@ -144,7 +145,7 @@ func TestConvertRowsEventsToMessages(t *testing.T) { rowsEvent := createRowsEvent() rowsEventData := []RowsEventData{NewRowsEventData(eventHeader, rowsEvent, tableMetadata)} - convertedMessages := ConvertRowsEventsToMessages(xId, rowsEventData) + convertedMessages := ConvertRowsEventsToMessages(gtid, xId, rowsEventData) if len(convertedMessages) != 0 { t.Fatal("Expected no messages to be created from unknown event") diff --git a/src/zalora/binlog-parser/parser/messages/message_test.go b/src/zalora/binlog-parser/parser/messages/message_test.go index 1ad89bf..2a864cd 100644 --- a/src/zalora/binlog-parser/parser/messages/message_test.go +++ b/src/zalora/binlog-parser/parser/messages/message_test.go @@ -11,8 +11,9 @@ func TestNewMessageHeader(t *testing.T) { now := time.Now() binlogPosition := uint32(1) xid := uint64(2) + gtid := "3e11fa47-71ca-11e1-9e33-c80aa9429562:23" - messageHeader := NewMessageHeader("schema", "table", now, binlogPosition, xid) + messageHeader := NewMessageHeader("schema", "table", now, binlogPosition, xid, gtid) if messageHeader.Schema != "schema" { t.Fatal("Wrong schema in message header") diff --git a/src/zalora/binlog-parser/parser/parser/rows_event_buffer_test.go b/src/zalora/binlog-parser/parser/parser/rows_event_buffer_test.go index 3c708e9..d0765f1 100644 --- a/src/zalora/binlog-parser/parser/parser/rows_event_buffer_test.go +++ b/src/zalora/binlog-parser/parser/parser/rows_event_buffer_test.go @@ -11,22 +11,29 @@ import ( func TestRowsEventBuffer(t *testing.T) { eventDataOne := conversion.RowsEventData{} eventDataTwo := conversion.RowsEventData{} + gtidOne := "3e11fa47-71ca-11e1-9e33-c80aa9429562:23" + gtidTwo := "3e11fa47-71ca-11e1-9e33-c80aa9429562:24" t.Run("Drain Empty", func(t *testing.T) { buffer := NewRowsEventBuffer() - buffered := buffer.Drain() + buffered, gtid := buffer.Drain() if len(buffered) != 0 { t.Fatal("Wrong number of entries retrieved from empty buffer") } + + if gtid != "" { + t.Fatalf("Expected GTID to be empty, got: %v", gtid) + } }) t.Run("Drain and re-fill", func(t *testing.T) { buffer := NewRowsEventBuffer() buffer.BufferRowsEventData(eventDataOne) buffer.BufferRowsEventData(eventDataTwo) + buffer.SetGTID(gtidOne) - buffered := buffer.Drain() + buffered, gtid := buffer.Drain() if len(buffered) != 2 { t.Fatal("Wrong number of entries retrieved from buffer") @@ -40,9 +47,14 @@ func TestRowsEventBuffer(t *testing.T) { t.Fatal("Retrieved wrong entry at index 1 from buffer") } + if gtid != gtidOne { + t.Fatalf("Expected GTID to be %v, got: %v", gtidOne, gtid) + } + buffer.BufferRowsEventData(eventDataOne) + buffer.SetGTID(gtidTwo) - buffered = buffer.Drain() + buffered, gtid = buffer.Drain() if len(buffered) != 1 { t.Fatal("Wrong number of entries retrieved from re-used buffer") @@ -51,5 +63,9 @@ func TestRowsEventBuffer(t *testing.T) { if !reflect.DeepEqual(buffered[0], eventDataOne) { t.Fatal("Retrieved wrong entry at index 0 from re-used buffer") } + + if gtid != gtidTwo { + t.Fatalf("Expected GTID to be %v, got: %v", gtidTwo, gtid) + } }) } From e0b01fc90575fd3463714506258dcab1801a360e Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Mon, 7 Dec 2020 15:34:28 +0300 Subject: [PATCH 06/10] data/fixtures: update fixtures with empty GTIDs --- data/fixtures/01-include-table.json | 9 +- data/fixtures/01.json | 30 +- data/fixtures/02.json | 9 +- data/fixtures/03.json | 21 +- data/fixtures/04.json | 9006 ++++++++++++++++++--------- data/fixtures/05.json | 9 +- data/fixtures/06.json | 19 +- data/fixtures/07.json | 9 +- 8 files changed, 6074 insertions(+), 3038 deletions(-) diff --git a/data/fixtures/01-include-table.json b/data/fixtures/01-include-table.json index 5749870..60d7084 100644 --- a/data/fixtures/01-include-table.json +++ b/data/fixtures/01-include-table.json @@ -4,7 +4,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-13T06:34:30Z", "BinlogPosition": 397, - "XId": 9 + "XId": 9, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22,7 +23,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-13T06:34:30Z", "BinlogPosition": 397, - "XId": 9 + "XId": 9, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40,7 +42,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-13T06:35:36Z", "BinlogPosition": 1226, - "XId": 14 + "XId": 14, + "GTID": "" }, "Type": "Delete", "Data": { diff --git a/data/fixtures/01.json b/data/fixtures/01.json index 69e1964..26ad01a 100644 --- a/data/fixtures/01.json +++ b/data/fixtures/01.json @@ -4,7 +4,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-13T06:34:30Z", "BinlogPosition": 397, - "XId": 9 + "XId": 9, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22,7 +23,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-13T06:34:30Z", "BinlogPosition": 397, - "XId": 9 + "XId": 9, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40,7 +42,8 @@ "Table": "rooms", "BinlogMessageTime": "2017-04-13T06:34:37Z", "BinlogPosition": 692, - "XId": 10 + "XId": 10, + "GTID": "" }, "Type": "Insert", "Data": { @@ -58,7 +61,8 @@ "Table": "rooms", "BinlogMessageTime": "2017-04-13T06:34:37Z", "BinlogPosition": 692, - "XId": 10 + "XId": 10, + "GTID": "" }, "Type": "Insert", "Data": { @@ -76,7 +80,8 @@ "Table": "rooms", "BinlogMessageTime": "2017-04-13T06:34:37Z", "BinlogPosition": 692, - "XId": 10 + "XId": 10, + "GTID": "" }, "Type": "Insert", "Data": { @@ -94,7 +99,8 @@ "Table": "rooms", "BinlogMessageTime": "2017-04-13T06:34:37Z", "BinlogPosition": 692, - "XId": 10 + "XId": 10, + "GTID": "" }, "Type": "Insert", "Data": { @@ -112,7 +118,8 @@ "Table": "rooms", "BinlogMessageTime": "2017-04-13T06:34:37Z", "BinlogPosition": 692, - "XId": 10 + "XId": 10, + "GTID": "" }, "Type": "Insert", "Data": { @@ -130,7 +137,8 @@ "Table": "rooms", "BinlogMessageTime": "2017-04-13T06:34:58Z", "BinlogPosition": 967, - "XId": 12 + "XId": 12, + "GTID": "" }, "Type": "Update", "OldData": { @@ -156,7 +164,8 @@ "Table": "rooms", "BinlogMessageTime": "2017-04-13T06:34:58Z", "BinlogPosition": 967, - "XId": 12 + "XId": 12, + "GTID": "" }, "Type": "Update", "OldData": { @@ -182,7 +191,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-13T06:35:36Z", "BinlogPosition": 1226, - "XId": 14 + "XId": 14, + "GTID": "" }, "Type": "Delete", "Data": { diff --git a/data/fixtures/02.json b/data/fixtures/02.json index 3a47d39..dc92fc6 100644 --- a/data/fixtures/02.json +++ b/data/fixtures/02.json @@ -4,7 +4,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-13T08:01:35Z", "BinlogPosition": 432, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "CREATE TABLE employees (\n emp_no INT UNSIGNED AUTO_INCREMENT NOT NULL,\n birth_date DATE NOT NULL,\n first_name VARCHAR(14) NOT NULL,\n last_name VARCHAR(16) NOT NULL,\n PRIMARY KEY (emp_no) \n)" @@ -15,7 +16,8 @@ "Table": "employees", "BinlogMessageTime": "2017-04-13T08:02:04Z", "BinlogPosition": 635, - "XId": 8 + "XId": 8, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34,7 +36,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-13T08:02:17Z", "BinlogPosition": 794, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "DROP TABLE `employees` /* generated by server */" diff --git a/data/fixtures/03.json b/data/fixtures/03.json index 3a4e40d..2288951 100644 --- a/data/fixtures/03.json +++ b/data/fixtures/03.json @@ -4,7 +4,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-24T03:47:57Z", "BinlogPosition": 323, - "XId": 9 + "XId": 9, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22,7 +23,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-24T03:47:57Z", "BinlogPosition": 323, - "XId": 9 + "XId": 9, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40,7 +42,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-24T03:50:14Z", "BinlogPosition": 560, - "XId": 11 + "XId": 11, + "GTID": "" }, "Type": "Update", "OldData": { @@ -66,7 +69,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-24T03:50:23Z", "BinlogPosition": 797, - "XId": 12 + "XId": 12, + "GTID": "" }, "Type": "Update", "OldData": { @@ -92,7 +96,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-24T03:50:35Z", "BinlogPosition": 1130, - "XId": 13 + "XId": 13, + "GTID": "" }, "Type": "Update", "OldData": { @@ -118,7 +123,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-24T03:50:35Z", "BinlogPosition": 1130, - "XId": 13 + "XId": 13, + "GTID": "" }, "Type": "Update", "OldData": { @@ -144,7 +150,8 @@ "Table": "buildings", "BinlogMessageTime": "2017-04-24T03:50:35Z", "BinlogPosition": 1130, - "XId": 13 + "XId": 13, + "GTID": "" }, "Type": "Update", "OldData": { diff --git a/data/fixtures/04.json b/data/fixtures/04.json index 11fee44..07e470e 100644 --- a/data/fixtures/04.json +++ b/data/fixtures/04.json @@ -4,7 +4,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:42:53Z", "BinlogPosition": 288, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "CREATE TABLE filler (\n id INT NOT NULL PRIMARY KEY AUTO_INCREMENT\n) ENGINE=Memory" @@ -15,7 +16,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:42:54Z", "BinlogPosition": 532, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "CREATE TABLE lookup (\n id INT NOT NULL PRIMARY KEY,\n value INT NOT NULL,\n shorttxt TEXT NOT NULL,\n longtxt TEXT NOT NULL\n) ENGINE=InnoDB" @@ -26,7 +28,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 775, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -37,7 +40,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1018, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -48,7 +52,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1261, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -59,7 +64,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1504, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -70,7 +76,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1747, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -81,7 +88,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1990, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -92,7 +100,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 2233, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -103,7 +112,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 2476, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -114,7 +124,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 2719, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -125,7 +136,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 2962, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -136,7 +148,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 3205, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -147,7 +160,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 3448, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -158,7 +172,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 3691, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -169,7 +184,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 3934, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -180,7 +196,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 4177, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -191,7 +208,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 4420, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -202,7 +220,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 4663, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -213,7 +232,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 4906, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -224,7 +244,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 5149, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -235,7 +256,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 5392, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -246,7 +268,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 5635, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -257,7 +280,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 5878, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -268,7 +292,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 6121, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -279,7 +304,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 6364, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -290,7 +316,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 6607, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -301,7 +328,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 6850, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -312,7 +340,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7093, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -323,7 +352,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7336, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -334,7 +364,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7579, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -345,7 +376,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7822, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -356,7 +388,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 8065, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -367,7 +400,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 8308, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -378,7 +412,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 8551, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -389,7 +424,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 8794, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -400,7 +436,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 9037, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -411,7 +448,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 9280, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -422,7 +460,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 9523, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -433,7 +472,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 9766, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -444,7 +484,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10009, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -455,7 +496,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10252, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -466,7 +508,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10495, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -477,7 +520,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10738, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -488,7 +532,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10981, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -499,7 +544,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 11224, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -510,7 +556,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 11467, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -521,7 +568,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 11710, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -532,7 +580,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 11953, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -543,7 +592,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 12196, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -554,7 +604,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 12439, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -565,7 +616,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 12682, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -576,7 +628,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 12925, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -587,7 +640,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 13168, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -598,7 +652,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 13411, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -609,7 +664,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 13654, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -620,7 +676,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 13897, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -631,7 +688,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 14140, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -642,7 +700,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 14383, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -653,7 +712,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 14626, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -664,7 +724,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 14869, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -675,7 +736,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 15112, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -686,7 +748,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 15355, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -697,7 +760,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 15598, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -708,7 +772,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 15841, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -719,7 +784,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16084, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -730,7 +796,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16327, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -741,7 +808,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16570, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -752,7 +820,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16813, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -763,7 +832,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 17056, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -774,7 +844,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 17299, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -785,7 +856,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 17542, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -796,7 +868,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 17785, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -807,7 +880,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 18028, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -818,7 +892,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 18271, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -829,7 +904,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 18514, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -840,7 +916,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 18757, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -851,7 +928,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19000, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -862,7 +940,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19243, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -873,7 +952,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19486, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -884,7 +964,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19729, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -895,7 +976,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19972, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -906,7 +988,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 20215, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -917,7 +1000,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 20458, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -928,7 +1012,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 20701, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -939,7 +1024,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 20944, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -950,7 +1036,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 21187, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -961,7 +1048,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 21430, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -972,7 +1060,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 21673, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -983,7 +1072,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 21916, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -994,7 +1084,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 22159, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1005,7 +1096,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 22402, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1016,7 +1108,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 22645, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1027,7 +1120,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 22888, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1038,7 +1132,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 23131, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1049,7 +1144,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 23374, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1060,7 +1156,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 23617, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1071,7 +1168,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 23860, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1082,7 +1180,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24103, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1093,7 +1192,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24346, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1104,7 +1204,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24589, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1115,7 +1216,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24832, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1126,7 +1228,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 25075, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1137,7 +1240,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 25318, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1148,7 +1252,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 25561, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1159,7 +1264,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 25804, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1170,7 +1276,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 26047, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1181,7 +1288,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 26290, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1192,7 +1300,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 26533, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1203,7 +1312,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 26776, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1214,7 +1324,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27019, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1225,7 +1336,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27262, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1236,7 +1348,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27505, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1247,7 +1360,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27748, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1258,7 +1372,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27991, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1269,7 +1384,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 28234, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1280,7 +1396,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 28477, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1291,7 +1408,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 28720, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1302,7 +1420,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 28963, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1313,7 +1432,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 29206, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1324,7 +1444,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 29449, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1335,7 +1456,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 29692, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1346,7 +1468,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 29935, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1357,7 +1480,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 30178, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1368,7 +1492,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 30421, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1379,7 +1504,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 30664, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1390,7 +1516,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 30907, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1401,7 +1528,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 31150, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1412,7 +1540,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 31393, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1423,7 +1552,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 31636, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1434,7 +1564,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 31879, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1445,7 +1576,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 32122, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1456,7 +1588,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 32365, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1467,7 +1600,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 32608, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1478,7 +1612,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 32851, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1489,7 +1624,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33094, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1500,7 +1636,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33337, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1511,7 +1648,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33580, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1522,7 +1660,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33823, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1533,7 +1672,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 34066, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1544,7 +1684,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 34309, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1555,7 +1696,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 34552, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1566,7 +1708,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 34795, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1577,7 +1720,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 35038, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1588,7 +1732,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 35281, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1599,7 +1744,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 35524, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1610,7 +1756,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 35767, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1621,7 +1768,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36010, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1632,7 +1780,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36253, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1643,7 +1792,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36496, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1654,7 +1804,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36739, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1665,7 +1816,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36982, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1676,7 +1828,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 37225, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1687,7 +1840,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 37468, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1698,7 +1852,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 37711, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1709,7 +1864,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 37954, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1720,7 +1876,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 38197, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1731,7 +1888,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 38440, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1742,7 +1900,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 38683, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1753,7 +1912,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 38926, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1764,7 +1924,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 39169, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1775,7 +1936,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 39412, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1786,7 +1948,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 39655, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1797,7 +1960,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 39898, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1808,7 +1972,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 40141, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1819,7 +1984,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 40384, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1830,7 +1996,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 40627, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1841,7 +2008,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 40870, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1852,7 +2020,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 41113, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1863,7 +2032,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 41356, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1874,7 +2044,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 41599, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1885,7 +2056,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 41842, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1896,7 +2068,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42085, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1907,7 +2080,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42328, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1918,7 +2092,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42571, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1929,7 +2104,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42814, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1940,7 +2116,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 43057, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1951,7 +2128,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 43300, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1962,7 +2140,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 43543, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1973,7 +2152,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 43786, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1984,7 +2164,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 44029, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -1995,7 +2176,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 44272, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2006,7 +2188,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 44515, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2017,7 +2200,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 44758, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2028,7 +2212,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45001, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2039,7 +2224,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45244, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2050,7 +2236,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45487, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2061,7 +2248,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45730, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2072,7 +2260,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45973, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2083,7 +2272,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 46216, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2094,7 +2284,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 46459, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2105,7 +2296,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 46702, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2116,7 +2308,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 46945, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2127,7 +2320,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 47188, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2138,7 +2332,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 47431, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2149,7 +2344,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 47674, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2160,7 +2356,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 47917, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2171,7 +2368,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 48160, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2182,7 +2380,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 48403, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2193,7 +2392,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 48646, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2204,7 +2404,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 48889, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2215,7 +2416,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 49132, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2226,7 +2428,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 49375, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2237,7 +2440,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 49618, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2248,7 +2452,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 49861, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2259,7 +2464,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 50104, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2270,7 +2476,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 50347, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2281,7 +2488,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 50590, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2292,7 +2500,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 50833, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2303,7 +2512,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51076, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2314,7 +2524,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51319, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2325,7 +2536,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51562, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2336,7 +2548,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51805, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2347,7 +2560,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 52048, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2358,7 +2572,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 52291, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2369,7 +2584,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 52534, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2380,7 +2596,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 52777, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2391,7 +2608,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53020, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2402,7 +2620,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53263, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2413,7 +2632,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53506, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2424,7 +2644,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53749, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2435,7 +2656,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53992, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2446,7 +2668,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 54235, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2457,7 +2680,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 54478, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2468,7 +2692,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 54721, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2479,7 +2704,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 54964, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2490,7 +2716,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 55207, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2501,7 +2728,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 55450, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2512,7 +2740,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 55693, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2523,7 +2752,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 55936, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2534,7 +2764,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 56179, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2545,7 +2776,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 56422, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2556,7 +2788,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 56665, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2567,7 +2800,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 56908, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2578,7 +2812,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 57151, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2589,7 +2824,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 57394, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2600,7 +2836,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 57637, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2611,7 +2848,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 57880, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2622,7 +2860,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 58123, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2633,7 +2872,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 58366, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2644,7 +2884,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 58609, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2655,7 +2896,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 58852, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2666,7 +2908,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59095, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2677,7 +2920,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59338, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2688,7 +2932,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59581, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2699,7 +2944,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59824, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2710,7 +2956,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 60067, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2721,7 +2968,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 60310, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2732,7 +2980,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 60553, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2743,7 +2992,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 60796, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2754,7 +3004,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 61039, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2765,7 +3016,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 61282, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2776,7 +3028,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 61525, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2787,7 +3040,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 61768, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2798,7 +3052,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62011, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2809,7 +3064,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62254, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2820,7 +3076,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62497, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2831,7 +3088,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62740, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2842,7 +3100,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62983, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2853,7 +3112,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 63226, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2864,7 +3124,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 63469, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2875,7 +3136,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 63712, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2886,7 +3148,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 63955, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2897,7 +3160,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 64198, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2908,7 +3172,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 64441, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2919,7 +3184,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 64684, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2930,7 +3196,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 64927, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2941,7 +3208,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 65170, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2952,7 +3220,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 65413, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2963,7 +3232,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 65656, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2974,7 +3244,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 65899, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2985,7 +3256,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 66142, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -2996,7 +3268,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 66385, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3007,7 +3280,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 66628, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3018,7 +3292,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 66871, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3029,7 +3304,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 67114, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3040,7 +3316,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 67357, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3051,7 +3328,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 67600, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3062,7 +3340,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 67843, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3073,7 +3352,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68086, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3084,7 +3364,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68329, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3095,7 +3376,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68572, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3106,7 +3388,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68815, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3117,7 +3400,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 69058, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3128,7 +3412,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 69301, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3139,7 +3424,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 69544, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3150,7 +3436,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 69787, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3161,7 +3448,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 70030, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3172,7 +3460,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 70273, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3183,7 +3472,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 70516, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3194,7 +3484,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 70759, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3205,7 +3496,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71002, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3216,7 +3508,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71245, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3227,7 +3520,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71488, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3238,7 +3532,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71731, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3249,7 +3544,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71974, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3260,7 +3556,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 72217, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3271,7 +3568,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 72460, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3282,7 +3580,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 72703, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3293,7 +3592,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 72946, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3304,7 +3604,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 73189, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3315,7 +3616,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 73432, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3326,7 +3628,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 73675, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3337,7 +3640,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 73918, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3348,7 +3652,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 74161, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3359,7 +3664,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 74404, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3370,7 +3676,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 74647, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3381,7 +3688,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 74890, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3392,7 +3700,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 75133, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3403,7 +3712,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 75376, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3414,7 +3724,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 75619, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3425,7 +3736,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 75862, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3436,7 +3748,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 76105, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3447,7 +3760,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 76348, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3458,7 +3772,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 76591, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3469,7 +3784,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 76834, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3480,7 +3796,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77077, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3491,7 +3808,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77320, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3502,7 +3820,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77563, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3513,7 +3832,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77806, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3524,7 +3844,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 78049, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3535,7 +3856,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 78292, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3546,7 +3868,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 78535, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3557,7 +3880,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 78778, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3568,7 +3892,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79021, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3579,7 +3904,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79264, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3590,7 +3916,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79507, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3601,7 +3928,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79750, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3612,7 +3940,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79993, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3623,7 +3952,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 80236, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3634,7 +3964,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 80479, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3645,7 +3976,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 80722, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3656,7 +3988,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 80965, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3667,7 +4000,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 81208, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3678,7 +4012,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 81451, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3689,7 +4024,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 81694, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3700,7 +4036,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 81937, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3711,7 +4048,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 82180, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3722,7 +4060,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 82423, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3733,7 +4072,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 82666, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3744,7 +4084,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 82909, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3755,7 +4096,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 83152, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3766,7 +4108,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 83395, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3777,7 +4120,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 83638, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3788,7 +4132,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 83881, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3799,7 +4144,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 84124, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3810,7 +4156,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 84367, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3821,7 +4168,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 84610, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3832,7 +4180,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 84853, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3843,7 +4192,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85096, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3854,7 +4204,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85339, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3865,7 +4216,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85582, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3876,7 +4228,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85825, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3887,7 +4240,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 86068, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3898,7 +4252,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 86311, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3909,7 +4264,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 86554, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3920,7 +4276,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 86797, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3931,7 +4288,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 87040, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3942,7 +4300,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 87283, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3953,7 +4312,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 87526, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3964,7 +4324,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 87769, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3975,7 +4336,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88012, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3986,7 +4348,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88255, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -3997,7 +4360,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88498, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4008,7 +4372,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88741, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4019,7 +4384,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88984, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4030,7 +4396,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 89227, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4041,7 +4408,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 89470, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4052,7 +4420,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 89713, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4063,7 +4432,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 89956, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4074,7 +4444,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 90199, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4085,7 +4456,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 90442, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4096,7 +4468,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 90685, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4107,7 +4480,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 90928, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4118,7 +4492,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 91171, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4129,7 +4504,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 91414, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4140,7 +4516,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 91657, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4151,7 +4528,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 91900, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4162,7 +4540,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 92143, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4173,7 +4552,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 92386, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4184,7 +4564,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 92629, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4195,7 +4576,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 92872, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4206,7 +4588,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 93115, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4217,7 +4600,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 93358, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4228,7 +4612,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 93601, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4239,7 +4624,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 93844, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4250,7 +4636,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94087, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4261,7 +4648,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94330, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4272,7 +4660,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94573, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4283,7 +4672,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94816, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4294,7 +4684,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 95059, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4305,7 +4696,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 95302, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4316,7 +4708,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 95545, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4327,7 +4720,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 95788, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4338,7 +4732,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 96031, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4349,7 +4744,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 96274, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4360,7 +4756,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 96517, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4371,7 +4768,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 96760, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4382,7 +4780,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97003, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4393,7 +4792,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97246, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4404,7 +4804,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97489, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4415,7 +4816,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97732, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4426,7 +4828,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97975, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4437,7 +4840,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 98218, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4448,7 +4852,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 98461, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4459,7 +4864,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 98704, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4470,7 +4876,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 98947, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4481,7 +4888,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 99190, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4492,7 +4900,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 99433, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4503,7 +4912,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 99676, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4514,7 +4924,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 99919, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4525,7 +4936,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 100162, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4536,7 +4948,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 100405, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4547,7 +4960,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 100648, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4558,7 +4972,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 100891, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4569,7 +4984,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 101134, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4580,7 +4996,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 101377, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4591,7 +5008,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 101620, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4602,7 +5020,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 101863, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4613,7 +5032,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 102106, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4624,7 +5044,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 102349, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4635,7 +5056,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 102592, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4646,7 +5068,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 102835, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4657,7 +5080,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103078, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4668,7 +5092,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103321, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4679,7 +5104,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103564, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4690,7 +5116,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103807, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4701,7 +5128,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 104050, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4712,7 +5140,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 104293, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4723,7 +5152,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 104536, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4734,7 +5164,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 104779, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4745,7 +5176,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105022, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4756,7 +5188,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105265, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4767,7 +5200,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105508, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4778,7 +5212,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105751, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4789,7 +5224,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105994, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4800,7 +5236,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 106237, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4811,7 +5248,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 106480, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4822,7 +5260,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 106723, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4833,7 +5272,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 106966, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4844,7 +5284,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 107209, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4855,7 +5296,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 107452, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4866,7 +5308,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 107695, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4877,7 +5320,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 107938, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4888,7 +5332,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 108181, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4899,7 +5344,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 108424, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4910,7 +5356,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 108667, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4921,7 +5368,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 108910, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4932,7 +5380,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 109153, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4943,7 +5392,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 109396, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4954,7 +5404,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 109639, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4965,7 +5416,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 109882, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4976,7 +5428,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 110125, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4987,7 +5440,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 110368, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -4998,7 +5452,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 110611, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5009,7 +5464,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 110854, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5020,7 +5476,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111097, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5031,7 +5488,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111340, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5042,7 +5500,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111583, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5053,7 +5512,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111826, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5064,7 +5524,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 112069, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5075,7 +5536,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 112312, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5086,7 +5548,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 112555, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5097,7 +5560,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 112798, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5108,7 +5572,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 113041, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5119,7 +5584,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 113284, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5130,7 +5596,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 113527, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5141,7 +5608,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 113770, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5152,7 +5620,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114013, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5163,7 +5632,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114256, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5174,7 +5644,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114499, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5185,7 +5656,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114742, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5196,7 +5668,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114985, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5207,7 +5680,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 115228, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5218,7 +5692,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 115471, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5229,7 +5704,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 115714, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5240,7 +5716,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 115957, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5251,7 +5728,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 116200, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5262,7 +5740,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 116443, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5273,7 +5752,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 116686, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5284,7 +5764,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 116929, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5295,7 +5776,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 117172, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5306,7 +5788,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 117415, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5317,7 +5800,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 117658, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5328,7 +5812,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 117901, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5339,7 +5824,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 118144, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5350,7 +5836,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 118387, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5361,7 +5848,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 118630, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5372,7 +5860,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 118873, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5383,7 +5872,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 119116, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5394,7 +5884,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 119359, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5405,7 +5896,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 119602, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5416,7 +5908,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 119845, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5427,7 +5920,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120088, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5438,7 +5932,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120331, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5449,7 +5944,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120574, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5460,7 +5956,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120817, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5471,7 +5968,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 121060, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5482,7 +5980,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 121303, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5493,7 +5992,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 121546, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5504,7 +6004,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 121789, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5515,7 +6016,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 122032, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5526,7 +6028,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 122275, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5537,7 +6040,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 122518, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5548,7 +6052,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 122761, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5559,7 +6064,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123004, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5570,7 +6076,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123247, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5581,7 +6088,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123490, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5592,7 +6100,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123733, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5603,7 +6112,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123976, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5614,7 +6124,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 124219, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5625,7 +6136,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 124462, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5636,7 +6148,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 124705, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5647,7 +6160,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 124948, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5658,7 +6172,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 125191, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5669,7 +6184,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 125434, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5680,7 +6196,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 125677, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5691,7 +6208,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 125920, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5702,7 +6220,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 126163, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5713,7 +6232,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 126406, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5724,7 +6244,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 126649, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5735,7 +6256,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 126892, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5746,7 +6268,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 127135, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5757,7 +6280,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 127378, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5768,7 +6292,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 127621, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5779,7 +6304,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 127864, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5790,7 +6316,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 128107, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5801,7 +6328,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 128350, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5812,7 +6340,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 128593, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5823,7 +6352,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 128836, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5834,7 +6364,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129079, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5845,7 +6376,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129322, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5856,7 +6388,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129565, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5867,7 +6400,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129808, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5878,7 +6412,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 130051, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5889,7 +6424,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 130294, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5900,7 +6436,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 130537, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5911,7 +6448,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 130780, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5922,7 +6460,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131023, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5933,7 +6472,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131266, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5944,7 +6484,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131509, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5955,7 +6496,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131752, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5966,7 +6508,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131995, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5977,7 +6520,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 132238, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5988,7 +6532,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 132481, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -5999,7 +6544,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 132724, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6010,7 +6556,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 132967, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6021,7 +6568,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 133210, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6032,7 +6580,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 133453, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6043,7 +6592,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 133696, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6054,7 +6604,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 133939, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6065,7 +6616,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 134182, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6076,7 +6628,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 134425, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6087,7 +6640,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 134668, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6098,7 +6652,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 134911, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6109,7 +6664,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 135154, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6120,7 +6676,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 135397, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6131,7 +6688,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 135640, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6142,7 +6700,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 135883, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6153,7 +6712,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 136126, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6164,7 +6724,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 136369, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6175,7 +6736,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 136612, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6186,7 +6748,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 136855, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6197,7 +6760,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137098, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6208,7 +6772,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137341, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6219,7 +6784,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137584, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6230,7 +6796,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137827, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6241,7 +6808,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 138070, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6252,7 +6820,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 138313, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6263,7 +6832,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 138556, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6274,7 +6844,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 138799, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6285,7 +6856,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 139042, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6296,7 +6868,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 139285, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6307,7 +6880,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 139528, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6318,7 +6892,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 139771, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6329,7 +6904,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140014, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6340,7 +6916,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140257, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6351,7 +6928,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140500, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6362,7 +6940,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140743, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6373,7 +6952,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140986, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6384,7 +6964,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 141229, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6395,7 +6976,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 141472, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6406,7 +6988,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 141715, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6417,7 +7000,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 141958, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6428,7 +7012,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 142201, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6439,7 +7024,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 142444, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6450,7 +7036,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 142687, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6461,7 +7048,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 142930, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6472,7 +7060,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 143173, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6483,7 +7072,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 143416, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6494,7 +7084,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 143659, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6505,7 +7096,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 143902, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6516,7 +7108,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 144145, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6527,7 +7120,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 144388, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6538,7 +7132,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 144631, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6549,7 +7144,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 144874, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6560,7 +7156,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 145117, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6571,7 +7168,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 145360, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6582,7 +7180,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 145603, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6593,7 +7192,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 145846, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6604,7 +7204,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146089, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6615,7 +7216,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146332, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6626,7 +7228,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146575, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6637,7 +7240,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146818, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6648,7 +7252,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 147061, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6659,7 +7264,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 147304, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6670,7 +7276,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 147547, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6681,7 +7288,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 147790, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6692,7 +7300,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 148033, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6703,7 +7312,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 148276, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6714,7 +7324,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 148519, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6725,7 +7336,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 148762, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6736,7 +7348,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149005, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6747,7 +7360,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149248, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6758,7 +7372,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149491, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6769,7 +7384,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149734, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6780,7 +7396,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149977, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6791,7 +7408,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 150220, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6802,7 +7420,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 150463, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6813,7 +7432,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 150706, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6824,7 +7444,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 150949, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6835,7 +7456,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 151192, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6846,7 +7468,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 151435, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6857,7 +7480,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 151678, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6868,7 +7492,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 151921, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6879,7 +7504,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 152164, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6890,7 +7516,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 152407, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6901,7 +7528,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 152650, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6912,7 +7540,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 152893, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6923,7 +7552,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 153136, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6934,7 +7564,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 153379, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6945,7 +7576,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 153622, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6956,7 +7588,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 153865, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6967,7 +7600,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 154108, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6978,7 +7612,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 154351, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -6989,7 +7624,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 154594, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7000,7 +7636,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 154837, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7011,7 +7648,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155080, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7022,7 +7660,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155323, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7033,7 +7672,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155566, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7044,7 +7684,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155809, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7055,7 +7696,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 156052, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7066,7 +7708,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 156295, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7077,7 +7720,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 156538, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7088,7 +7732,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 156781, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7099,7 +7744,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157024, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7110,7 +7756,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157267, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7121,7 +7768,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157510, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7132,7 +7780,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157753, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7143,7 +7792,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157996, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7154,7 +7804,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 158239, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7165,7 +7816,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 158482, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7176,7 +7828,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 158725, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7187,7 +7840,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 158968, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7198,7 +7852,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 159211, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7209,7 +7864,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 159454, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7220,7 +7876,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 159697, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7231,7 +7888,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 159940, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7242,7 +7900,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 160183, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7253,7 +7912,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 160426, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7264,7 +7924,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 160669, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7275,7 +7936,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 160912, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7286,7 +7948,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 161155, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7297,7 +7960,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 161398, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7308,7 +7972,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 161641, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7319,7 +7984,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 161884, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7330,7 +7996,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 162127, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7341,7 +8008,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 162370, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7352,7 +8020,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 162613, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7363,7 +8032,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 162856, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7374,7 +8044,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163099, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7385,7 +8056,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163342, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7396,7 +8068,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163585, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7407,7 +8080,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163828, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7418,7 +8092,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 164071, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7429,7 +8104,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 164314, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7440,7 +8116,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 164557, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7451,7 +8128,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 164800, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7462,7 +8140,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 165043, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7473,7 +8152,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 165286, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7484,7 +8164,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 165529, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7495,7 +8176,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 165772, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7506,7 +8188,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166015, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7517,7 +8200,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166258, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7528,7 +8212,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166501, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7539,7 +8224,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166744, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7550,7 +8236,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166987, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7561,7 +8248,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 167230, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7572,7 +8260,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 167473, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7583,7 +8272,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 167716, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7594,7 +8284,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 167959, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7605,7 +8296,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 168202, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7616,7 +8308,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 168445, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7627,7 +8320,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 168688, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7638,7 +8332,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 168931, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7649,7 +8344,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 169174, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7660,7 +8356,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 169417, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7671,7 +8368,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 169660, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7682,7 +8380,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 169903, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7693,7 +8392,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 170146, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7704,7 +8404,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 170389, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7715,7 +8416,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 170632, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7726,7 +8428,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 170875, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7737,7 +8440,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 171118, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7748,7 +8452,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 171361, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7759,7 +8464,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 171604, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7770,7 +8476,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 171847, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7781,7 +8488,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172090, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7792,7 +8500,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172333, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7803,7 +8512,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172576, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7814,7 +8524,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172819, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7825,7 +8536,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 173062, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7836,7 +8548,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 173305, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7847,7 +8560,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 173548, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7858,7 +8572,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 173791, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7869,7 +8584,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 174034, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7880,7 +8596,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 174277, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7891,7 +8608,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 174520, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7902,7 +8620,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 174763, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7913,7 +8632,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175006, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7924,7 +8644,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175249, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7935,7 +8656,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175492, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7946,7 +8668,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175735, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7957,7 +8680,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175978, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7968,7 +8692,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 176221, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7979,7 +8704,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 176464, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -7990,7 +8716,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 176707, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8001,7 +8728,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 176950, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8012,7 +8740,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 177193, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8023,7 +8752,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 177436, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8034,7 +8764,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 177679, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8045,7 +8776,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 177922, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8056,7 +8788,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 178165, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8067,7 +8800,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 178408, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8078,7 +8812,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 178651, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8089,7 +8824,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 178894, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8100,7 +8836,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 179137, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8111,7 +8848,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 179380, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8122,7 +8860,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 179623, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8133,7 +8872,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 179866, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8144,7 +8884,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 180109, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8155,7 +8896,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 180352, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8166,7 +8908,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 180595, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8177,7 +8920,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 180838, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8188,7 +8932,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181081, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8199,7 +8944,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181324, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8210,7 +8956,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181567, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8221,7 +8968,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181810, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8232,7 +8980,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 182053, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8243,7 +8992,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 182296, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8254,7 +9004,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 182539, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8265,7 +9016,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 182782, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8276,7 +9028,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183025, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8287,7 +9040,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183268, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8298,7 +9052,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183511, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8309,7 +9064,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183754, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8320,7 +9076,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183997, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8331,7 +9088,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 184240, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8342,7 +9100,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 184483, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8353,7 +9112,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 184726, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8364,7 +9124,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 184969, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8375,7 +9136,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 185212, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8386,7 +9148,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 185455, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8397,7 +9160,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 185698, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8408,7 +9172,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 185941, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8419,7 +9184,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 186184, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8430,7 +9196,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 186427, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8441,7 +9208,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 186670, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8452,7 +9220,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 186913, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8463,7 +9232,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 187156, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8474,7 +9244,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 187399, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8485,7 +9256,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 187642, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8496,7 +9268,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 187885, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8507,7 +9280,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 188128, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8518,7 +9292,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 188371, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8529,7 +9304,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 188614, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8540,7 +9316,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 188857, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8551,7 +9328,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189100, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8562,7 +9340,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189343, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8573,7 +9352,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189586, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8584,7 +9364,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189829, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8595,7 +9376,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 190072, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8606,7 +9388,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 190315, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8617,7 +9400,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 190558, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8628,7 +9412,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 190801, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8639,7 +9424,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 191044, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8650,7 +9436,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 191287, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8661,7 +9448,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 191530, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8672,7 +9460,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 191773, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8683,7 +9472,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192016, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8694,7 +9484,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192259, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8705,7 +9496,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192502, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8716,7 +9508,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192745, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8727,7 +9520,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192988, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8738,7 +9532,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 193231, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8749,7 +9544,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 193474, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8760,7 +9556,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 193717, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8771,7 +9568,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 193960, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8782,7 +9580,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 194203, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8793,7 +9592,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 194446, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8804,7 +9604,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 194689, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8815,7 +9616,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 194932, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8826,7 +9628,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 195175, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8837,7 +9640,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 195418, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8848,7 +9652,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 195661, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8859,7 +9664,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 195904, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8870,7 +9676,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 196147, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8881,7 +9688,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 196390, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8892,7 +9700,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 196633, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8903,7 +9712,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 196876, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8914,7 +9724,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 197119, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8925,7 +9736,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 197362, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8936,7 +9748,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 197605, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8947,7 +9760,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 197848, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8958,7 +9772,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198091, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8969,7 +9784,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198334, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8980,7 +9796,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198577, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -8991,7 +9808,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198820, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9002,7 +9820,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 199063, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9013,7 +9832,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 199306, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9024,7 +9844,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 199549, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9035,7 +9856,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 199792, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9046,7 +9868,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 200035, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9057,7 +9880,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 200278, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9068,7 +9892,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 200521, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9079,7 +9904,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 200764, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9090,7 +9916,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201007, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9101,7 +9928,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201250, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9112,7 +9940,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201493, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9123,7 +9952,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201736, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9134,7 +9964,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201979, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9145,7 +9976,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 202222, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9156,7 +9988,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 202465, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9167,7 +10000,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 202708, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9178,7 +10012,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 202951, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9189,7 +10024,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 203194, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9200,7 +10036,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 203437, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9211,7 +10048,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 203680, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9222,7 +10060,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 203923, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9233,7 +10072,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 204166, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9244,7 +10084,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 204409, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9255,7 +10096,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 204652, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9266,7 +10108,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 204895, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9277,7 +10120,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 205138, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9288,7 +10132,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 205381, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9299,7 +10144,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 205624, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9310,7 +10156,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 205867, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9321,7 +10168,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 206110, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9332,7 +10180,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 206353, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9343,7 +10192,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 206596, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9354,7 +10204,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 206839, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9365,7 +10216,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207082, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9376,7 +10228,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207325, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9387,7 +10240,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207568, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9398,7 +10252,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207811, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9409,7 +10264,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 208054, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9420,7 +10276,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 208297, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9431,7 +10288,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 208540, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9442,7 +10300,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 208783, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9453,7 +10312,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209026, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9464,7 +10324,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209269, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9475,7 +10336,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209512, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9486,7 +10348,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209755, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9497,7 +10360,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209998, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9508,7 +10372,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 210241, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9519,7 +10384,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 210484, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9530,7 +10396,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 210727, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9541,7 +10408,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 210970, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9552,7 +10420,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 211213, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9563,7 +10432,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 211456, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9574,7 +10444,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 211699, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9585,7 +10456,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 211942, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9596,7 +10468,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 212185, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9607,7 +10480,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 212428, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9618,7 +10492,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 212671, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9629,7 +10504,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 212914, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9640,7 +10516,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 213157, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9651,7 +10528,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 213400, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9662,7 +10540,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 213643, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9673,7 +10552,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 213886, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9684,7 +10564,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 214129, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9695,7 +10576,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 214372, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9706,7 +10588,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 214615, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9717,7 +10600,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 214858, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9728,7 +10612,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215101, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9739,7 +10624,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215344, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9750,7 +10636,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215587, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9761,7 +10648,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215830, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9772,7 +10660,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 216073, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9783,7 +10672,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 216316, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9794,7 +10684,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 216559, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9805,7 +10696,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 216802, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9816,7 +10708,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 217045, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9827,7 +10720,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 217288, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9838,7 +10732,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 217531, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9849,7 +10744,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 217774, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9860,7 +10756,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218017, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9871,7 +10768,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218260, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9882,7 +10780,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218503, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9893,7 +10792,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218746, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9904,7 +10804,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218989, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9915,7 +10816,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 219232, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9926,7 +10828,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 219475, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9937,7 +10840,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 219718, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9948,7 +10852,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 219961, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9959,7 +10864,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 220204, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9970,7 +10876,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 220447, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9981,7 +10888,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 220690, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -9992,7 +10900,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 220933, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10003,7 +10912,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 221176, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10014,7 +10924,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 221419, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10025,7 +10936,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 221662, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10036,7 +10948,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 221905, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10047,7 +10960,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 222148, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10058,7 +10972,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 222391, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10069,7 +10984,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 222634, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10080,7 +10996,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 222877, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10091,7 +11008,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 223120, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10102,7 +11020,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 223363, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10113,7 +11032,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 223606, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10124,7 +11044,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 223849, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10135,7 +11056,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224092, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10146,7 +11068,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224335, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10157,7 +11080,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224578, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10168,7 +11092,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224821, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10179,7 +11104,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 225064, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10190,7 +11116,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 225307, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10201,7 +11128,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 225550, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10212,7 +11140,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 225793, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10223,7 +11152,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 226036, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10234,7 +11164,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 226279, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10245,7 +11176,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 226522, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10256,7 +11188,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 226765, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10267,7 +11200,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227008, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10278,7 +11212,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227251, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10289,7 +11224,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227494, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10300,7 +11236,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227737, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10311,7 +11248,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227980, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10322,7 +11260,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 228223, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10333,7 +11272,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 228466, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10344,7 +11284,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 228709, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10355,7 +11296,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 228952, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10366,7 +11308,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 229195, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10377,7 +11320,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 229438, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10388,7 +11332,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 229681, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10399,7 +11344,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 229924, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10410,7 +11356,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 230167, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10421,7 +11368,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 230410, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10432,7 +11380,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 230653, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10443,7 +11392,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 230896, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10454,7 +11404,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 231139, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10465,7 +11416,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 231382, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10476,7 +11428,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 231625, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10487,7 +11440,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 231868, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10498,7 +11452,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 232111, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10509,7 +11464,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 232354, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10520,7 +11476,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 232597, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10531,7 +11488,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 232840, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10542,7 +11500,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233083, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10553,7 +11512,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233326, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10564,7 +11524,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233569, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10575,7 +11536,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233812, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10586,7 +11548,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 234055, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10597,7 +11560,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 234298, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10608,7 +11572,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 234541, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10619,7 +11584,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 234784, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10630,7 +11596,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235027, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10641,7 +11608,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235270, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10652,7 +11620,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235513, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10663,7 +11632,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235756, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10674,7 +11644,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235999, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10685,7 +11656,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 236242, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10696,7 +11668,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 236485, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10707,7 +11680,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 236728, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10718,7 +11692,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 236971, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10729,7 +11704,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 237214, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10740,7 +11716,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 237457, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10751,7 +11728,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 237700, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10762,7 +11740,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 237943, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10773,7 +11752,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 238186, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10784,7 +11764,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 238429, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10795,7 +11776,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 238672, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10806,7 +11788,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 238915, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10817,7 +11800,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 239158, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10828,7 +11812,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 239401, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10839,7 +11824,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 239644, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10850,7 +11836,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 239887, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10861,7 +11848,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 240130, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10872,7 +11860,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 240373, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10883,7 +11872,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 240616, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10894,7 +11884,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 240859, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10905,7 +11896,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241102, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10916,7 +11908,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241345, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10927,7 +11920,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241588, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10938,7 +11932,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241831, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10949,7 +11944,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 242074, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10960,7 +11956,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 242317, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10971,7 +11968,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 242560, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10982,7 +11980,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 242803, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -10993,7 +11992,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 243046, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -11004,7 +12004,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 243289, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -11015,7 +12016,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 243532, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "COMMIT" @@ -11026,7 +12028,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 699, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11042,7 +12045,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 942, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11058,7 +12062,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1185, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11074,7 +12079,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1428, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11090,7 +12096,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1671, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11106,7 +12113,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 1914, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11122,7 +12130,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 2157, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11138,7 +12147,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 2400, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11154,7 +12164,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 2643, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11170,7 +12181,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 2886, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11186,7 +12198,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 3129, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11202,7 +12215,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 3372, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11218,7 +12232,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 3615, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11234,7 +12249,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 3858, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11250,7 +12266,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 4101, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11266,7 +12283,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 4344, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11282,7 +12300,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 4587, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11298,7 +12317,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 4830, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11314,7 +12334,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 5073, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11330,7 +12351,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 5316, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11346,7 +12368,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 5559, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11362,7 +12385,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 5802, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11378,7 +12402,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 6045, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11394,7 +12419,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 6288, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11410,7 +12436,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 6531, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11426,7 +12453,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 6774, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11442,7 +12470,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7017, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11458,7 +12487,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7260, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11474,7 +12504,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7503, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11490,7 +12521,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7746, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11506,7 +12538,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 7989, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11522,7 +12555,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 8232, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11538,7 +12572,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 8475, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11554,7 +12589,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 8718, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11570,7 +12606,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 8961, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11586,7 +12623,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 9204, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11602,7 +12640,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 9447, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11618,7 +12657,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 9690, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11634,7 +12674,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 9933, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11650,7 +12691,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10176, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11666,7 +12708,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10419, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11682,7 +12725,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10662, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11698,7 +12742,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 10905, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11714,7 +12759,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 11148, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11730,7 +12776,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 11391, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11746,7 +12793,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 11634, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11762,7 +12810,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 11877, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11778,7 +12827,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 12120, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11794,7 +12844,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 12363, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11810,7 +12861,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 12606, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11826,7 +12878,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 12849, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11842,7 +12895,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 13092, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11858,7 +12912,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 13335, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11874,7 +12929,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 13578, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11890,7 +12946,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 13821, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11906,7 +12963,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 14064, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11922,7 +12980,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 14307, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11938,7 +12997,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 14550, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11954,7 +13014,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 14793, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11970,7 +13031,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 15036, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -11986,7 +13048,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 15279, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12002,7 +13065,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 15522, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12018,7 +13082,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 15765, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12034,7 +13099,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16008, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12050,7 +13116,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16251, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12066,7 +13133,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16494, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12082,7 +13150,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16737, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12098,7 +13167,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 16980, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12114,7 +13184,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 17223, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12130,7 +13201,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 17466, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12146,7 +13218,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 17709, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12162,7 +13235,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 17952, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12178,7 +13252,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 18195, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12194,7 +13269,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 18438, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12210,7 +13286,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 18681, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12226,7 +13303,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 18924, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12242,7 +13320,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19167, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12258,7 +13337,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19410, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12274,7 +13354,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19653, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12290,7 +13371,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 19896, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12306,7 +13388,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 20139, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12322,7 +13405,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 20382, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12338,7 +13422,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 20625, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12354,7 +13439,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 20868, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12370,7 +13456,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 21111, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12386,7 +13473,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 21354, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12402,7 +13490,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 21597, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12418,7 +13507,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 21840, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12434,7 +13524,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 22083, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12450,7 +13541,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 22326, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12466,7 +13558,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 22569, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12482,7 +13575,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 22812, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12498,7 +13592,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 23055, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12514,7 +13609,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 23298, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12530,7 +13626,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 23541, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12546,7 +13643,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 23784, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12562,7 +13660,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24027, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12578,7 +13677,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24270, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12594,7 +13694,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24513, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12610,7 +13711,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24756, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12626,7 +13728,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 24999, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12642,7 +13745,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 25242, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12658,7 +13762,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 25485, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12674,7 +13779,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 25728, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12690,7 +13796,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 25971, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12706,7 +13813,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 26214, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12722,7 +13830,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 26457, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12738,7 +13847,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 26700, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12754,7 +13864,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 26943, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12770,7 +13881,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27186, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12786,7 +13898,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27429, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12802,7 +13915,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27672, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12818,7 +13932,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 27915, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12834,7 +13949,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 28158, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12850,7 +13966,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 28401, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12866,7 +13983,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 28644, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12882,7 +14000,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 28887, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12898,7 +14017,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 29130, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12914,7 +14034,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 29373, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12930,7 +14051,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 29616, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12946,7 +14068,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 29859, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12962,7 +14085,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 30102, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12978,7 +14102,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 30345, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -12994,7 +14119,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 30588, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13010,7 +14136,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 30831, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13026,7 +14153,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 31074, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13042,7 +14170,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 31317, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13058,7 +14187,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 31560, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13074,7 +14204,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 31803, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13090,7 +14221,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 32046, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13106,7 +14238,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 32289, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13122,7 +14255,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 32532, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13138,7 +14272,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 32775, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13154,7 +14289,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33018, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13170,7 +14306,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33261, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13186,7 +14323,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33504, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13202,7 +14340,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33747, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13218,7 +14357,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 33990, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13234,7 +14374,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 34233, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13250,7 +14391,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 34476, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13266,7 +14408,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 34719, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13282,7 +14425,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 34962, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13298,7 +14442,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 35205, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13314,7 +14459,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 35448, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13330,7 +14476,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 35691, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13346,7 +14493,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 35934, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13362,7 +14510,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36177, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13378,7 +14527,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36420, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13394,7 +14544,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36663, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13410,7 +14561,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 36906, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13426,7 +14578,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 37149, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13442,7 +14595,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 37392, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13458,7 +14612,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 37635, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13474,7 +14629,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 37878, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13490,7 +14646,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 38121, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13506,7 +14663,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 38364, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13522,7 +14680,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 38607, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13538,7 +14697,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 38850, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13554,7 +14714,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 39093, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13570,7 +14731,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 39336, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13586,7 +14748,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 39579, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13602,7 +14765,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 39822, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13618,7 +14782,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 40065, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13634,7 +14799,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 40308, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13650,7 +14816,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 40551, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13666,7 +14833,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 40794, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13682,7 +14850,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 41037, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13698,7 +14867,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 41280, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13714,7 +14884,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 41523, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13730,7 +14901,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 41766, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13746,7 +14918,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42009, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13762,7 +14935,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42252, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13778,7 +14952,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42495, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13794,7 +14969,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42738, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13810,7 +14986,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 42981, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13826,7 +15003,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 43224, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13842,7 +15020,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 43467, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13858,7 +15037,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 43710, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13874,7 +15054,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 43953, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13890,7 +15071,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 44196, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13906,7 +15088,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 44439, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13922,7 +15105,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 44682, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13938,7 +15122,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 44925, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13954,7 +15139,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45168, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13970,7 +15156,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45411, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -13986,7 +15173,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45654, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14002,7 +15190,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 45897, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14018,7 +15207,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 46140, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14034,7 +15224,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 46383, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14050,7 +15241,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 46626, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14066,7 +15258,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 46869, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14082,7 +15275,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 47112, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14098,7 +15292,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 47355, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14114,7 +15309,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 47598, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14130,7 +15326,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 47841, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14146,7 +15343,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 48084, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14162,7 +15360,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 48327, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14178,7 +15377,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 48570, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14194,7 +15394,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 48813, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14210,7 +15411,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 49056, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14226,7 +15428,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 49299, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14242,7 +15445,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 49542, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14258,7 +15462,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 49785, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14274,7 +15479,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 50028, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14290,7 +15496,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 50271, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14306,7 +15513,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 50514, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14322,7 +15530,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 50757, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14338,7 +15547,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51000, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14354,7 +15564,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51243, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14370,7 +15581,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51486, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14386,7 +15598,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51729, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14402,7 +15615,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 51972, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14418,7 +15632,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 52215, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14434,7 +15649,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 52458, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14450,7 +15666,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 52701, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14466,7 +15683,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 52944, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14482,7 +15700,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53187, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14498,7 +15717,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53430, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14514,7 +15734,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53673, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14530,7 +15751,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 53916, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14546,7 +15768,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 54159, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14562,7 +15785,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 54402, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14578,7 +15802,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 54645, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14594,7 +15819,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 54888, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14610,7 +15836,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 55131, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14626,7 +15853,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 55374, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14642,7 +15870,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 55617, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14658,7 +15887,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 55860, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14674,7 +15904,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 56103, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14690,7 +15921,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 56346, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14706,7 +15938,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 56589, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14722,7 +15955,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 56832, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14738,7 +15972,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 57075, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14754,7 +15989,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 57318, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14770,7 +16006,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 57561, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14786,7 +16023,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 57804, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14802,7 +16040,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 58047, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14818,7 +16057,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 58290, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14834,7 +16074,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 58533, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14850,7 +16091,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 58776, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14866,7 +16108,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59019, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14882,7 +16125,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59262, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14898,7 +16142,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59505, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14914,7 +16159,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59748, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14930,7 +16176,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 59991, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14946,7 +16193,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 60234, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14962,7 +16210,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 60477, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14978,7 +16227,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 60720, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -14994,7 +16244,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 60963, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15010,7 +16261,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 61206, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15026,7 +16278,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 61449, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15042,7 +16295,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 61692, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15058,7 +16312,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 61935, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15074,7 +16329,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62178, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15090,7 +16346,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62421, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15106,7 +16363,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62664, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15122,7 +16380,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 62907, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15138,7 +16397,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 63150, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15154,7 +16414,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 63393, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15170,7 +16431,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 63636, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15186,7 +16448,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 63879, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15202,7 +16465,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 64122, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15218,7 +16482,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 64365, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15234,7 +16499,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 64608, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15250,7 +16516,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 64851, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15266,7 +16533,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 65094, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15282,7 +16550,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 65337, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15298,7 +16567,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 65580, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15314,7 +16584,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 65823, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15330,7 +16601,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 66066, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15346,7 +16618,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 66309, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15362,7 +16635,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 66552, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15378,7 +16652,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 66795, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15394,7 +16669,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 67038, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15410,7 +16686,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 67281, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15426,7 +16703,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 67524, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15442,7 +16720,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 67767, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15458,7 +16737,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68010, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15474,7 +16754,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68253, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15490,7 +16771,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68496, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15506,7 +16788,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68739, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15522,7 +16805,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 68982, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15538,7 +16822,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 69225, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15554,7 +16839,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 69468, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15570,7 +16856,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 69711, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15586,7 +16873,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 69954, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15602,7 +16890,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 70197, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15618,7 +16907,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 70440, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15634,7 +16924,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 70683, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15650,7 +16941,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 70926, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15666,7 +16958,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71169, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15682,7 +16975,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71412, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15698,7 +16992,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71655, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15714,7 +17009,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 71898, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15730,7 +17026,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 72141, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15746,7 +17043,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 72384, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15762,7 +17060,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 72627, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15778,7 +17077,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 72870, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15794,7 +17094,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 73113, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15810,7 +17111,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 73356, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15826,7 +17128,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 73599, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15842,7 +17145,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 73842, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15858,7 +17162,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 74085, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15874,7 +17179,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 74328, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15890,7 +17196,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 74571, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15906,7 +17213,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 74814, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15922,7 +17230,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 75057, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15938,7 +17247,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 75300, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15954,7 +17264,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 75543, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15970,7 +17281,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 75786, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -15986,7 +17298,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 76029, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16002,7 +17315,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 76272, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16018,7 +17332,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 76515, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16034,7 +17349,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 76758, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16050,7 +17366,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77001, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16066,7 +17383,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77244, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16082,7 +17400,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77487, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16098,7 +17417,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77730, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16114,7 +17434,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 77973, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16130,7 +17451,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 78216, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16146,7 +17468,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 78459, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16162,7 +17485,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 78702, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16178,7 +17502,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 78945, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16194,7 +17519,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79188, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16210,7 +17536,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79431, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16226,7 +17553,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79674, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16242,7 +17570,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 79917, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16258,7 +17587,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 80160, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16274,7 +17604,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 80403, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16290,7 +17621,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 80646, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16306,7 +17638,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 80889, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16322,7 +17655,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 81132, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16338,7 +17672,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 81375, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16354,7 +17689,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 81618, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16370,7 +17706,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 81861, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16386,7 +17723,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 82104, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16402,7 +17740,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 82347, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16418,7 +17757,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 82590, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16434,7 +17774,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 82833, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16450,7 +17791,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 83076, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16466,7 +17808,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 83319, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16482,7 +17825,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 83562, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16498,7 +17842,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 83805, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16514,7 +17859,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 84048, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16530,7 +17876,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 84291, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16546,7 +17893,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 84534, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16562,7 +17910,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 84777, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16578,7 +17927,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85020, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16594,7 +17944,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85263, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16610,7 +17961,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85506, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16626,7 +17978,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85749, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16642,7 +17995,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 85992, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16658,7 +18012,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 86235, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16674,7 +18029,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 86478, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16690,7 +18046,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 86721, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16706,7 +18063,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 86964, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16722,7 +18080,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 87207, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16738,7 +18097,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 87450, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16754,7 +18114,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 87693, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16770,7 +18131,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 87936, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16786,7 +18148,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88179, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16802,7 +18165,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88422, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16818,7 +18182,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88665, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16834,7 +18199,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 88908, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16850,7 +18216,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 89151, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16866,7 +18233,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 89394, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16882,7 +18250,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 89637, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16898,7 +18267,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 89880, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16914,7 +18284,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 90123, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16930,7 +18301,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 90366, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16946,7 +18318,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 90609, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16962,7 +18335,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 90852, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16978,7 +18352,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 91095, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -16994,7 +18369,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 91338, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17010,7 +18386,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 91581, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17026,7 +18403,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 91824, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17042,7 +18420,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 92067, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17058,7 +18437,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 92310, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17074,7 +18454,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 92553, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17090,7 +18471,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 92796, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17106,7 +18488,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 93039, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17122,7 +18505,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 93282, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17138,7 +18522,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 93525, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17154,7 +18539,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 93768, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17170,7 +18556,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94011, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17186,7 +18573,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94254, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17202,7 +18590,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94497, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17218,7 +18607,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94740, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17234,7 +18624,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 94983, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17250,7 +18641,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 95226, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17266,7 +18658,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 95469, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17282,7 +18675,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 95712, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17298,7 +18692,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 95955, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17314,7 +18709,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 96198, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17330,7 +18726,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 96441, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17346,7 +18743,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 96684, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17362,7 +18760,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 96927, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17378,7 +18777,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97170, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17394,7 +18794,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97413, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17410,7 +18811,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97656, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17426,7 +18828,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 97899, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17442,7 +18845,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 98142, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17458,7 +18862,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 98385, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17474,7 +18879,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 98628, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17490,7 +18896,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 98871, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17506,7 +18913,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 99114, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17522,7 +18930,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 99357, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17538,7 +18947,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 99600, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17554,7 +18964,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 99843, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17570,7 +18981,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 100086, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17586,7 +18998,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 100329, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17602,7 +19015,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 100572, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17618,7 +19032,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 100815, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17634,7 +19049,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 101058, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17650,7 +19066,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 101301, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17666,7 +19083,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 101544, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17682,7 +19100,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 101787, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17698,7 +19117,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 102030, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17714,7 +19134,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 102273, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17730,7 +19151,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 102516, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17746,7 +19168,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 102759, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17762,7 +19185,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103002, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17778,7 +19202,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103245, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17794,7 +19219,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103488, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17810,7 +19236,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103731, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17826,7 +19253,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 103974, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17842,7 +19270,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 104217, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17858,7 +19287,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 104460, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17874,7 +19304,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 104703, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17890,7 +19321,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 104946, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17906,7 +19338,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105189, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17922,7 +19355,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105432, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17938,7 +19372,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105675, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17954,7 +19389,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 105918, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17970,7 +19406,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 106161, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -17986,7 +19423,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 106404, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18002,7 +19440,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 106647, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18018,7 +19457,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 106890, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18034,7 +19474,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 107133, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18050,7 +19491,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 107376, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18066,7 +19508,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 107619, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18082,7 +19525,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 107862, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18098,7 +19542,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 108105, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18114,7 +19559,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 108348, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18130,7 +19576,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 108591, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18146,7 +19593,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 108834, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18162,7 +19610,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 109077, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18178,7 +19627,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 109320, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18194,7 +19644,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 109563, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18210,7 +19661,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 109806, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18226,7 +19678,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 110049, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18242,7 +19695,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 110292, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18258,7 +19712,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 110535, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18274,7 +19729,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 110778, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18290,7 +19746,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111021, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18306,7 +19763,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111264, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18322,7 +19780,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111507, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18338,7 +19797,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111750, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18354,7 +19814,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 111993, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18370,7 +19831,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 112236, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18386,7 +19848,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 112479, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18402,7 +19865,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 112722, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18418,7 +19882,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 112965, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18434,7 +19899,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 113208, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18450,7 +19916,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 113451, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18466,7 +19933,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 113694, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18482,7 +19950,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 113937, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18498,7 +19967,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114180, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18514,7 +19984,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114423, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18530,7 +20001,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114666, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18546,7 +20018,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 114909, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18562,7 +20035,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 115152, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18578,7 +20052,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 115395, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18594,7 +20069,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 115638, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18610,7 +20086,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 115881, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18626,7 +20103,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 116124, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18642,7 +20120,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 116367, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18658,7 +20137,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 116610, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18674,7 +20154,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 116853, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18690,7 +20171,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 117096, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18706,7 +20188,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 117339, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18722,7 +20205,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 117582, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18738,7 +20222,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 117825, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18754,7 +20239,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 118068, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18770,7 +20256,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 118311, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18786,7 +20273,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 118554, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18802,7 +20290,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 118797, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18818,7 +20307,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 119040, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18834,7 +20324,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 119283, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18850,7 +20341,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 119526, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18866,7 +20358,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 119769, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18882,7 +20375,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120012, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18898,7 +20392,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120255, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18914,7 +20409,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120498, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18930,7 +20426,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120741, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18946,7 +20443,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 120984, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18962,7 +20460,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 121227, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18978,7 +20477,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 121470, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -18994,7 +20494,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 121713, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19010,7 +20511,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 121956, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19026,7 +20528,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 122199, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19042,7 +20545,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 122442, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19058,7 +20562,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 122685, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19074,7 +20579,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 122928, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19090,7 +20596,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123171, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19106,7 +20613,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123414, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19122,7 +20630,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123657, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19138,7 +20647,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 123900, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19154,7 +20664,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 124143, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19170,7 +20681,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 124386, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19186,7 +20698,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 124629, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19202,7 +20715,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 124872, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19218,7 +20732,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 125115, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19234,7 +20749,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 125358, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19250,7 +20766,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 125601, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19266,7 +20783,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 125844, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19282,7 +20800,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 126087, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19298,7 +20817,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 126330, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19314,7 +20834,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 126573, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19330,7 +20851,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 126816, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19346,7 +20868,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 127059, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19362,7 +20885,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 127302, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19378,7 +20902,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 127545, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19394,7 +20919,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 127788, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19410,7 +20936,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 128031, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19426,7 +20953,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 128274, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19442,7 +20970,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 128517, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19458,7 +20987,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 128760, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19474,7 +21004,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129003, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19490,7 +21021,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129246, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19506,7 +21038,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129489, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19522,7 +21055,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129732, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19538,7 +21072,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 129975, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19554,7 +21089,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 130218, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19570,7 +21106,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 130461, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19586,7 +21123,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 130704, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19602,7 +21140,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 130947, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19618,7 +21157,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131190, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19634,7 +21174,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131433, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19650,7 +21191,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131676, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19666,7 +21208,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 131919, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19682,7 +21225,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 132162, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19698,7 +21242,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 132405, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19714,7 +21259,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 132648, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19730,7 +21276,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 132891, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19746,7 +21293,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 133134, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19762,7 +21310,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 133377, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19778,7 +21327,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 133620, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19794,7 +21344,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 133863, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19810,7 +21361,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 134106, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19826,7 +21378,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 134349, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19842,7 +21395,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 134592, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19858,7 +21412,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 134835, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19874,7 +21429,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 135078, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19890,7 +21446,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 135321, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19906,7 +21463,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 135564, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19922,7 +21480,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 135807, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19938,7 +21497,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 136050, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19954,7 +21514,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 136293, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19970,7 +21531,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 136536, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -19986,7 +21548,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 136779, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20002,7 +21565,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137022, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20018,7 +21582,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137265, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20034,7 +21599,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137508, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20050,7 +21616,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137751, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20066,7 +21633,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 137994, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20082,7 +21650,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 138237, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20098,7 +21667,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 138480, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20114,7 +21684,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 138723, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20130,7 +21701,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 138966, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20146,7 +21718,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 139209, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20162,7 +21735,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 139452, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20178,7 +21752,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 139695, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20194,7 +21769,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 139938, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20210,7 +21786,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140181, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20226,7 +21803,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140424, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20242,7 +21820,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140667, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20258,7 +21837,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 140910, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20274,7 +21854,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 141153, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20290,7 +21871,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 141396, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20306,7 +21888,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 141639, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20322,7 +21905,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 141882, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20338,7 +21922,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 142125, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20354,7 +21939,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 142368, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20370,7 +21956,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 142611, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20386,7 +21973,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 142854, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20402,7 +21990,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 143097, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20418,7 +22007,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 143340, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20434,7 +22024,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 143583, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20450,7 +22041,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 143826, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20466,7 +22058,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 144069, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20482,7 +22075,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 144312, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20498,7 +22092,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 144555, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20514,7 +22109,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 144798, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20530,7 +22126,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 145041, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20546,7 +22143,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 145284, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20562,7 +22160,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 145527, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20578,7 +22177,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 145770, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20594,7 +22194,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146013, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20610,7 +22211,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146256, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20626,7 +22228,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146499, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20642,7 +22245,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146742, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20658,7 +22262,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 146985, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20674,7 +22279,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 147228, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20690,7 +22296,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 147471, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20706,7 +22313,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 147714, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20722,7 +22330,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 147957, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20738,7 +22347,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 148200, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20754,7 +22364,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 148443, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20770,7 +22381,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 148686, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20786,7 +22398,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 148929, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20802,7 +22415,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149172, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20818,7 +22432,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149415, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20834,7 +22449,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149658, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20850,7 +22466,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 149901, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20866,7 +22483,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 150144, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20882,7 +22500,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 150387, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20898,7 +22517,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 150630, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20914,7 +22534,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 150873, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20930,7 +22551,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 151116, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20946,7 +22568,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 151359, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20962,7 +22585,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 151602, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20978,7 +22602,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 151845, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -20994,7 +22619,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 152088, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21010,7 +22636,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 152331, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21026,7 +22653,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 152574, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21042,7 +22670,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 152817, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21058,7 +22687,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 153060, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21074,7 +22704,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 153303, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21090,7 +22721,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 153546, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21106,7 +22738,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 153789, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21122,7 +22755,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 154032, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21138,7 +22772,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 154275, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21154,7 +22789,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 154518, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21170,7 +22806,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 154761, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21186,7 +22823,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155004, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21202,7 +22840,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155247, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21218,7 +22857,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155490, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21234,7 +22874,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155733, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21250,7 +22891,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 155976, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21266,7 +22908,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 156219, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21282,7 +22925,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 156462, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21298,7 +22942,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 156705, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21314,7 +22959,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 156948, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21330,7 +22976,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157191, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21346,7 +22993,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157434, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21362,7 +23010,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157677, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21378,7 +23027,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 157920, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21394,7 +23044,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 158163, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21410,7 +23061,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 158406, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21426,7 +23078,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 158649, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21442,7 +23095,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 158892, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21458,7 +23112,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 159135, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21474,7 +23129,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 159378, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21490,7 +23146,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 159621, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21506,7 +23163,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 159864, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21522,7 +23180,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 160107, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21538,7 +23197,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 160350, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21554,7 +23214,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 160593, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21570,7 +23231,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 160836, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21586,7 +23248,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 161079, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21602,7 +23265,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 161322, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21618,7 +23282,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 161565, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21634,7 +23299,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 161808, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21650,7 +23316,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 162051, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21666,7 +23333,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 162294, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21682,7 +23350,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 162537, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21698,7 +23367,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 162780, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21714,7 +23384,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163023, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21730,7 +23401,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163266, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21746,7 +23418,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163509, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21762,7 +23435,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163752, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21778,7 +23452,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 163995, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21794,7 +23469,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 164238, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21810,7 +23486,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 164481, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21826,7 +23503,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 164724, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21842,7 +23520,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 164967, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21858,7 +23537,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 165210, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21874,7 +23554,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 165453, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21890,7 +23571,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 165696, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21906,7 +23588,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 165939, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21922,7 +23605,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166182, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21938,7 +23622,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166425, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21954,7 +23639,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166668, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21970,7 +23656,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 166911, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -21986,7 +23673,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 167154, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22002,7 +23690,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 167397, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22018,7 +23707,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 167640, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22034,7 +23724,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 167883, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22050,7 +23741,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 168126, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22066,7 +23758,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 168369, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22082,7 +23775,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 168612, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22098,7 +23792,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 168855, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22114,7 +23809,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 169098, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22130,7 +23826,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 169341, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22146,7 +23843,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 169584, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22162,7 +23860,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 169827, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22178,7 +23877,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 170070, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22194,7 +23894,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 170313, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22210,7 +23911,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 170556, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22226,7 +23928,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 170799, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22242,7 +23945,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 171042, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22258,7 +23962,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 171285, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22274,7 +23979,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 171528, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22290,7 +23996,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 171771, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22306,7 +24013,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172014, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22322,7 +24030,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172257, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22338,7 +24047,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172500, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22354,7 +24064,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172743, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22370,7 +24081,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 172986, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22386,7 +24098,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 173229, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22402,7 +24115,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 173472, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22418,7 +24132,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 173715, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22434,7 +24149,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 173958, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22450,7 +24166,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 174201, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22466,7 +24183,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 174444, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22482,7 +24200,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 174687, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22498,7 +24217,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 174930, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22514,7 +24234,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175173, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22530,7 +24251,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175416, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22546,7 +24268,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175659, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22562,7 +24285,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 175902, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22578,7 +24302,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 176145, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22594,7 +24319,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 176388, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22610,7 +24336,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 176631, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22626,7 +24353,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 176874, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22642,7 +24370,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 177117, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22658,7 +24387,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 177360, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22674,7 +24404,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 177603, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22690,7 +24421,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 177846, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22706,7 +24438,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 178089, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22722,7 +24455,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 178332, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22738,7 +24472,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 178575, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22754,7 +24489,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 178818, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22770,7 +24506,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 179061, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22786,7 +24523,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 179304, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22802,7 +24540,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 179547, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22818,7 +24557,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 179790, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22834,7 +24574,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 180033, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22850,7 +24591,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 180276, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22866,7 +24608,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 180519, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22882,7 +24625,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 180762, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22898,7 +24642,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181005, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22914,7 +24659,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181248, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22930,7 +24676,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181491, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22946,7 +24693,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181734, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22962,7 +24710,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 181977, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22978,7 +24727,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 182220, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -22994,7 +24744,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 182463, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23010,7 +24761,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 182706, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23026,7 +24778,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 182949, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23042,7 +24795,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183192, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23058,7 +24812,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183435, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23074,7 +24829,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183678, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23090,7 +24846,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 183921, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23106,7 +24863,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 184164, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23122,7 +24880,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 184407, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23138,7 +24897,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 184650, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23154,7 +24914,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 184893, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23170,7 +24931,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 185136, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23186,7 +24948,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 185379, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23202,7 +24965,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 185622, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23218,7 +24982,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 185865, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23234,7 +24999,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 186108, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23250,7 +25016,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 186351, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23266,7 +25033,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 186594, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23282,7 +25050,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 186837, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23298,7 +25067,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 187080, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23314,7 +25084,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 187323, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23330,7 +25101,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 187566, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23346,7 +25118,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 187809, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23362,7 +25135,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 188052, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23378,7 +25152,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 188295, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23394,7 +25169,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 188538, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23410,7 +25186,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 188781, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23426,7 +25203,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189024, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23442,7 +25220,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189267, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23458,7 +25237,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189510, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23474,7 +25254,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189753, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23490,7 +25271,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 189996, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23506,7 +25288,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 190239, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23522,7 +25305,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 190482, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23538,7 +25322,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 190725, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23554,7 +25339,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 190968, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23570,7 +25356,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 191211, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23586,7 +25373,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 191454, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23602,7 +25390,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 191697, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23618,7 +25407,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 191940, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23634,7 +25424,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192183, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23650,7 +25441,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192426, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23666,7 +25458,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192669, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23682,7 +25475,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 192912, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23698,7 +25492,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 193155, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23714,7 +25509,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 193398, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23730,7 +25526,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 193641, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23746,7 +25543,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 193884, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23762,7 +25560,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 194127, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23778,7 +25577,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 194370, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23794,7 +25594,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 194613, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23810,7 +25611,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 194856, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23826,7 +25628,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 195099, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23842,7 +25645,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 195342, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23858,7 +25662,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 195585, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23874,7 +25679,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 195828, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23890,7 +25696,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 196071, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23906,7 +25713,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 196314, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23922,7 +25730,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 196557, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23938,7 +25747,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 196800, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23954,7 +25764,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 197043, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23970,7 +25781,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 197286, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -23986,7 +25798,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 197529, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24002,7 +25815,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 197772, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24018,7 +25832,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198015, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24034,7 +25849,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198258, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24050,7 +25866,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198501, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24066,7 +25883,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198744, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24082,7 +25900,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 198987, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24098,7 +25917,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 199230, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24114,7 +25934,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 199473, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24130,7 +25951,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 199716, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24146,7 +25968,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 199959, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24162,7 +25985,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 200202, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24178,7 +26002,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 200445, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24194,7 +26019,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 200688, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24210,7 +26036,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 200931, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24226,7 +26053,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201174, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24242,7 +26070,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201417, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24258,7 +26087,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201660, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24274,7 +26104,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 201903, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24290,7 +26121,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 202146, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24306,7 +26138,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 202389, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24322,7 +26155,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 202632, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24338,7 +26172,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 202875, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24354,7 +26189,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 203118, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24370,7 +26206,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 203361, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24386,7 +26223,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 203604, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24402,7 +26240,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 203847, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24418,7 +26257,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 204090, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24434,7 +26274,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 204333, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24450,7 +26291,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 204576, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24466,7 +26308,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 204819, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24482,7 +26325,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 205062, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24498,7 +26342,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 205305, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24514,7 +26359,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 205548, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24530,7 +26376,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 205791, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24546,7 +26393,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 206034, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24562,7 +26410,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 206277, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24578,7 +26427,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 206520, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24594,7 +26444,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 206763, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24610,7 +26461,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207006, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24626,7 +26478,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207249, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24642,7 +26495,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207492, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24658,7 +26512,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207735, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24674,7 +26529,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 207978, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24690,7 +26546,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 208221, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24706,7 +26563,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 208464, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24722,7 +26580,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 208707, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24738,7 +26597,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 208950, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24754,7 +26614,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209193, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24770,7 +26631,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209436, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24786,7 +26648,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209679, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24802,7 +26665,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 209922, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24818,7 +26682,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 210165, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24834,7 +26699,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 210408, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24850,7 +26716,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 210651, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24866,7 +26733,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 210894, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24882,7 +26750,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 211137, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24898,7 +26767,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 211380, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24914,7 +26784,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 211623, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24930,7 +26801,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 211866, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24946,7 +26818,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 212109, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24962,7 +26835,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 212352, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24978,7 +26852,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 212595, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -24994,7 +26869,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 212838, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25010,7 +26886,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 213081, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25026,7 +26903,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 213324, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25042,7 +26920,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 213567, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25058,7 +26937,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 213810, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25074,7 +26954,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 214053, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25090,7 +26971,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 214296, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25106,7 +26988,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 214539, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25122,7 +27005,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 214782, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25138,7 +27022,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215025, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25154,7 +27039,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215268, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25170,7 +27056,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215511, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25186,7 +27073,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215754, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25202,7 +27090,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 215997, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25218,7 +27107,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 216240, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25234,7 +27124,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 216483, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25250,7 +27141,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 216726, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25266,7 +27158,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 216969, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25282,7 +27175,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 217212, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25298,7 +27192,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 217455, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25314,7 +27209,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 217698, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25330,7 +27226,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 217941, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25346,7 +27243,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218184, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25362,7 +27260,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218427, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25378,7 +27277,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218670, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25394,7 +27294,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 218913, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25410,7 +27311,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 219156, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25426,7 +27328,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 219399, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25442,7 +27345,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 219642, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25458,7 +27362,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 219885, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25474,7 +27379,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 220128, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25490,7 +27396,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 220371, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25506,7 +27413,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 220614, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25522,7 +27430,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 220857, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25538,7 +27447,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 221100, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25554,7 +27464,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 221343, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25570,7 +27481,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 221586, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25586,7 +27498,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 221829, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25602,7 +27515,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 222072, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25618,7 +27532,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 222315, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25634,7 +27549,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 222558, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25650,7 +27566,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 222801, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25666,7 +27583,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 223044, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25682,7 +27600,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 223287, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25698,7 +27617,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 223530, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25714,7 +27634,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 223773, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25730,7 +27651,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224016, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25746,7 +27668,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224259, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25762,7 +27685,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224502, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25778,7 +27702,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224745, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25794,7 +27719,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 224988, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25810,7 +27736,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 225231, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25826,7 +27753,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 225474, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25842,7 +27770,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 225717, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25858,7 +27787,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 225960, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25874,7 +27804,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 226203, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25890,7 +27821,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 226446, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25906,7 +27838,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 226689, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25922,7 +27855,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 226932, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25938,7 +27872,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227175, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25954,7 +27889,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227418, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25970,7 +27906,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227661, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -25986,7 +27923,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 227904, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26002,7 +27940,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 228147, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26018,7 +27957,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 228390, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26034,7 +27974,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 228633, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26050,7 +27991,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 228876, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26066,7 +28008,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 229119, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26082,7 +28025,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 229362, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26098,7 +28042,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 229605, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26114,7 +28059,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 229848, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26130,7 +28076,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 230091, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26146,7 +28093,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 230334, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26162,7 +28110,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 230577, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26178,7 +28127,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 230820, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26194,7 +28144,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 231063, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26210,7 +28161,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 231306, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26226,7 +28178,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 231549, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26242,7 +28195,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 231792, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26258,7 +28212,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 232035, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26274,7 +28229,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 232278, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26290,7 +28246,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 232521, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26306,7 +28263,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 232764, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26322,7 +28280,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233007, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26338,7 +28297,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233250, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26354,7 +28314,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233493, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26370,7 +28331,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233736, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26386,7 +28348,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 233979, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26402,7 +28365,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 234222, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26418,7 +28382,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 234465, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26434,7 +28399,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 234708, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26450,7 +28416,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 234951, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26466,7 +28433,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235194, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26482,7 +28450,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235437, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26498,7 +28467,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235680, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26514,7 +28484,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 235923, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26530,7 +28501,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 236166, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26546,7 +28518,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 236409, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26562,7 +28535,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 236652, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26578,7 +28552,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 236895, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26594,7 +28569,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 237138, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26610,7 +28586,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 237381, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26626,7 +28603,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 237624, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26642,7 +28620,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 237867, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26658,7 +28637,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 238110, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26674,7 +28654,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 238353, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26690,7 +28671,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 238596, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26706,7 +28688,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 238839, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26722,7 +28705,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 239082, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26738,7 +28722,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 239325, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26754,7 +28739,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 239568, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26770,7 +28756,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 239811, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26786,7 +28773,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 240054, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26802,7 +28790,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 240297, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26818,7 +28807,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 240540, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26834,7 +28824,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 240783, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26850,7 +28841,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241026, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26866,7 +28858,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241269, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26882,7 +28875,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241512, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26898,7 +28892,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241755, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26914,7 +28909,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 241998, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26930,7 +28926,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 242241, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26946,7 +28943,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 242484, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26962,7 +28960,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 242727, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26978,7 +28977,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 242970, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -26994,7 +28994,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 243213, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27010,7 +29011,8 @@ "Table": "filler", "BinlogMessageTime": "2017-04-24T04:43:00Z", "BinlogPosition": 243456, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27026,7 +29028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 251982, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27045,7 +29048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 260238, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27064,7 +29068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 268522, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27083,7 +29088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 276938, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27102,7 +29108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 285324, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27121,7 +29128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 293760, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27140,7 +29148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 302146, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27159,7 +29168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 310528, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27178,7 +29188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 318836, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27197,7 +29208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 327188, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27216,7 +29228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 335580, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27235,7 +29248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 343846, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27254,7 +29268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 352160, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27273,7 +29288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 360492, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27292,7 +29308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 368770, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27311,7 +29328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 377124, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27330,7 +29348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 385416, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27349,7 +29368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 393770, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27368,7 +29388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 402026, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27387,7 +29408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 410406, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27406,7 +29428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 418698, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27425,7 +29448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 426978, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27444,7 +29468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 435260, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27463,7 +29488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 443586, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27482,7 +29508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 451930, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27501,7 +29528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 460234, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27520,7 +29548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 468478, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27539,7 +29568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 476742, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27558,7 +29588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 485096, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27577,7 +29608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 493426, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27596,7 +29628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 501780, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27615,7 +29648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 510112, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27634,7 +29668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 518474, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27653,7 +29688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 526842, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27672,7 +29708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 535156, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27691,7 +29728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 543578, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27710,7 +29748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 551908, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27729,7 +29768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 560252, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27748,7 +29788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 568542, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27767,7 +29808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 576916, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27786,7 +29828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 585276, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27805,7 +29848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 593710, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27824,7 +29868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 601962, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27843,7 +29888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 610274, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27862,7 +29908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 618644, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27881,7 +29928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 626914, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27900,7 +29948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 635310, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27919,7 +29968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 643638, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27938,7 +29988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 652054, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27957,7 +30008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 660308, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27976,7 +30028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 668688, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -27995,7 +30048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 676984, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28014,7 +30068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 685280, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28033,7 +30088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 693632, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28052,7 +30108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 702068, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28071,7 +30128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 710350, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28090,7 +30148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 718610, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28109,7 +30168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 727018, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28128,7 +30188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 735444, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28147,7 +30208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 743708, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28166,7 +30228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 752106, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28185,7 +30248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 760460, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28204,7 +30268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 768802, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28223,7 +30288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 777206, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28242,7 +30308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 785558, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28261,7 +30328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 793864, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28280,7 +30348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 802302, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28299,7 +30368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 810728, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28318,7 +30388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 819108, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28337,7 +30408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 827486, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28356,7 +30428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 835792, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28375,7 +30448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 844150, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28394,7 +30468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 852582, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28413,7 +30488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 860824, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28432,7 +30508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 869102, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28451,7 +30528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 877524, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28470,7 +30548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 885956, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28489,7 +30568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 894208, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28508,7 +30588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 902530, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28527,7 +30608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 910942, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28546,7 +30628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 919196, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28565,7 +30648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 927588, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28584,7 +30668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 935944, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28603,7 +30688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 944312, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28622,7 +30708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 952638, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28641,7 +30728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 960924, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28660,7 +30748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 969340, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28679,7 +30768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 977716, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28698,7 +30788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 986110, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28717,7 +30808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 994510, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28736,7 +30828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1002886, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28755,7 +30848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1011326, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28774,7 +30868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1019754, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28793,7 +30888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1028138, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28812,7 +30908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1036530, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28831,7 +30928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1044900, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28850,7 +30948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1053336, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28869,7 +30968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1061758, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28888,7 +30988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1070122, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28907,7 +31008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1078436, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28926,7 +31028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1086874, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28945,7 +31048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1095278, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28964,7 +31068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1103546, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -28983,7 +31088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1111836, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29002,7 +31108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1120236, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29021,7 +31128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1128528, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29040,7 +31148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1136946, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29059,7 +31168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1145318, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29078,7 +31188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1153682, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29097,7 +31208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1161944, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29116,7 +31228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1170324, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29135,7 +31248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1178596, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29154,7 +31268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1186974, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29173,7 +31288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1195408, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29192,7 +31308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1203800, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29211,7 +31328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1212222, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29230,7 +31348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1220512, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29249,7 +31368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1228854, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29268,7 +31388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1237250, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29287,7 +31408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1245568, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29306,7 +31428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1253926, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29325,7 +31448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1262322, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29344,7 +31468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1270590, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29363,7 +31488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1278900, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29382,7 +31508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1287206, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29401,7 +31528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1295560, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29420,7 +31548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1303974, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29439,7 +31568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1312342, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29458,7 +31588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1320698, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29477,7 +31608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1329132, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29496,7 +31628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1337396, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29515,7 +31648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1345772, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29534,7 +31668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1354022, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29553,7 +31688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1362304, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29572,7 +31708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1370718, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29591,7 +31728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1379106, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29610,7 +31748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1387360, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29629,7 +31768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1395628, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29648,7 +31788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1403964, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29667,7 +31808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1412400, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29686,7 +31828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1420730, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29705,7 +31848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1429030, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29724,7 +31868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1437296, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29743,7 +31888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1445686, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29762,7 +31908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1454000, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29781,7 +31928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1462360, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29800,7 +31948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1470774, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29819,7 +31968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1479128, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29838,7 +31988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1487410, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29857,7 +32008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1495722, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29876,7 +32028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1503994, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29895,7 +32048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1512374, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29914,7 +32068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1520618, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29933,7 +32088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1528862, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29952,7 +32108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1537302, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29971,7 +32128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1545734, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -29990,7 +32148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1554130, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30009,7 +32168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1562374, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30028,7 +32188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1570764, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30047,7 +32208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1579140, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30066,7 +32228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1587414, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30085,7 +32248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1595812, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30104,7 +32268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1604136, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30123,7 +32288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1612526, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30142,7 +32308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1620862, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30161,7 +32328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1629128, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30180,7 +32348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1637414, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30199,7 +32368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1645798, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30218,7 +32388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1654226, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30237,7 +32408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1662566, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30256,7 +32428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1670944, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30275,7 +32448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1679376, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30294,7 +32468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1687756, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30313,7 +32488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1696118, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30332,7 +32508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1704550, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30351,7 +32528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1712980, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30370,7 +32548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1721398, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30389,7 +32568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1729752, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30408,7 +32588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1738028, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30427,7 +32608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1746310, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30446,7 +32628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1754644, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30465,7 +32648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1763034, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30484,7 +32668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1771336, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30503,7 +32688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1779638, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30522,7 +32708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1787996, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30541,7 +32728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1796242, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30560,7 +32748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1804558, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30579,7 +32768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1812960, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30598,7 +32788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1821378, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30617,7 +32808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1829626, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30636,7 +32828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1837966, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30655,7 +32848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1846284, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30674,7 +32868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1854614, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30693,7 +32888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1862870, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30712,7 +32908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1871116, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30731,7 +32928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1879538, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30750,7 +32948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1887864, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30769,7 +32968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1896194, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30788,7 +32988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1904622, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30807,7 +33008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1912932, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30826,7 +33028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1921358, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30845,7 +33048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1929712, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30864,7 +33068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1937970, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30883,7 +33088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1946350, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30902,7 +33108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1954642, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30921,7 +33128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1962918, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30940,7 +33148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1971182, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30959,7 +33168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1979432, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30978,7 +33188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1987850, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -30997,7 +33208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 1996152, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31016,7 +33228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2004562, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31035,7 +33248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2012866, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31054,7 +33268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2021116, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31073,7 +33288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2029410, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31092,7 +33308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2037694, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31111,7 +33328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2045992, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31130,7 +33348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2054388, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31149,7 +33368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2062828, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31168,7 +33388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2071202, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31187,7 +33408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2079508, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31206,7 +33428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2087876, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31225,7 +33448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2096160, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31244,7 +33468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2104430, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31263,7 +33488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2112690, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31282,7 +33508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2120934, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31301,7 +33528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2129340, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31320,7 +33548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2137592, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31339,7 +33568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2145994, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31358,7 +33588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2154406, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31377,7 +33608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2162816, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31396,7 +33628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2171196, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31415,7 +33648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2179622, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31434,7 +33668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2187970, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31453,7 +33688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2196396, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31472,7 +33708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2204834, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31491,7 +33728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2213112, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31510,7 +33748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2221542, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31529,7 +33768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2229814, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31548,7 +33788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2238248, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31567,7 +33808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2246556, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31586,7 +33828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2254958, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31605,7 +33848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2263202, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31624,7 +33868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2271576, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31643,7 +33888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2279876, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31662,7 +33908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2288208, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31681,7 +33928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2296530, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31700,7 +33948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2304902, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31719,7 +33968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2313156, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31738,7 +33988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2321466, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31757,7 +34008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2329816, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31776,7 +34028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2338190, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31795,7 +34048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2346574, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31814,7 +34068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2354932, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31833,7 +34088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2363332, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31852,7 +34108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2371610, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31871,7 +34128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2379966, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31890,7 +34148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2388266, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31909,7 +34168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2396656, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31928,7 +34188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2405064, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31947,7 +34208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2413494, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31966,7 +34228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2421778, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -31985,7 +34248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2430068, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32004,7 +34268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2438424, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32023,7 +34288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2446698, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32042,7 +34308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2454956, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32061,7 +34328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2463382, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32080,7 +34348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2471698, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32099,7 +34368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2479960, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32118,7 +34388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2488278, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32137,7 +34408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2496642, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32156,7 +34428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2505064, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32175,7 +34448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2513446, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32194,7 +34468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2521844, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32213,7 +34488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2530250, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32232,7 +34508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2538648, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32251,7 +34528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2546974, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32270,7 +34548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2555368, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32289,7 +34568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2563718, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32308,7 +34588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2572044, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32327,7 +34608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2580382, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32346,7 +34628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2588652, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32365,7 +34648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2596952, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32384,7 +34668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2605196, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32403,7 +34688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2613478, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32422,7 +34708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2621916, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32441,7 +34728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2630216, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32460,7 +34748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2638566, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32479,7 +34768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2646970, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32498,7 +34788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2655304, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32517,7 +34808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2663716, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32536,7 +34828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2672136, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32555,7 +34848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2680562, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32574,7 +34868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2688986, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32593,7 +34888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2697390, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32612,7 +34908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2705700, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32631,7 +34928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2713994, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32650,7 +34948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2722292, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32669,7 +34968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2730664, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32688,7 +34988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2738982, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32707,7 +35008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2747420, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32726,7 +35028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2755814, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32745,7 +35048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2764230, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32764,7 +35068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2772486, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32783,7 +35088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2780878, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32802,7 +35108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2789230, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32821,7 +35128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2797574, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32840,7 +35148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2805996, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32859,7 +35168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2814432, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32878,7 +35188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2822704, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32897,7 +35208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2831116, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32916,7 +35228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2839522, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32935,7 +35248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2847870, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32954,7 +35268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2856152, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32973,7 +35288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2864480, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32992,7 +35308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2872828, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33011,7 +35328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2881148, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33030,7 +35348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2889466, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33049,7 +35368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2897848, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33068,7 +35388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2906164, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33087,7 +35408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2914560, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33106,7 +35428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2922950, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33125,7 +35448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2931272, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33144,7 +35468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2939668, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33163,7 +35488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2948038, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33182,7 +35508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2956464, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33201,7 +35528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2964838, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33220,7 +35548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2973192, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33239,7 +35568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2981600, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33258,7 +35588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2989940, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33277,7 +35608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 2998374, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33296,7 +35628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3006678, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33315,7 +35648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3015058, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33334,7 +35668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3023406, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33353,7 +35688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3031768, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33372,7 +35708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3040090, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33391,7 +35728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3048374, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33410,7 +35748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3056790, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33429,7 +35768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3065174, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33448,7 +35788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3073608, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33467,7 +35808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3081980, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33486,7 +35828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3090296, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33505,7 +35848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3098722, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33524,7 +35868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3107062, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33543,7 +35888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3115444, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33562,7 +35908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3123696, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33581,7 +35928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3131966, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33600,7 +35948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3140318, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33619,7 +35968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3148630, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33638,7 +35988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3156892, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33657,7 +36008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3165226, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33676,7 +36028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3173472, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33695,7 +36048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3181858, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33714,7 +36068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3190206, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33733,7 +36088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3198548, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33752,7 +36108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3206976, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33771,7 +36128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3215244, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33790,7 +36148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3223664, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33809,7 +36168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3231918, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33828,7 +36188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3240290, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33847,7 +36208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3248544, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33866,7 +36228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3256856, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33885,7 +36248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3265214, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33904,7 +36268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3273630, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33923,7 +36288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3281996, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33942,7 +36308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3290332, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33961,7 +36328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3298674, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33980,7 +36348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3306936, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -33999,7 +36368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3315182, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34018,7 +36388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3323582, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34037,7 +36408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3332000, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34056,7 +36428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3340252, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34075,7 +36448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3348620, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34094,7 +36468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3357056, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34113,7 +36488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3365298, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34132,7 +36508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3373554, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34151,7 +36528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3381868, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34170,7 +36548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3390226, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34189,7 +36568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3398632, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34208,7 +36588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3406950, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34227,7 +36608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3415282, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34246,7 +36628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3423550, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34265,7 +36648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3431846, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34284,7 +36668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3440088, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34303,7 +36688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3448364, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34322,7 +36708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3456778, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34341,7 +36728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3465176, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34360,7 +36748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3473490, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34379,7 +36768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3481820, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34398,7 +36788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3490084, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34417,7 +36808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3498376, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34436,7 +36828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3506802, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34455,7 +36848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3515214, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34474,7 +36868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3523552, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34493,7 +36888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3531968, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34512,7 +36908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3540394, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34531,7 +36928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3548832, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34550,7 +36948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3557108, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34569,7 +36968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3565532, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34588,7 +36988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3573778, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34607,7 +37008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3582100, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34626,7 +37028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3590532, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34645,7 +37048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3598886, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34664,7 +37068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3607320, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34683,7 +37088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3615584, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34702,7 +37108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3623966, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34721,7 +37128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3632240, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34740,7 +37148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3640622, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34759,7 +37168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3648870, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34778,7 +37188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3657122, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34797,7 +37208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3665396, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34816,7 +37228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3673770, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34835,7 +37248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3682174, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34854,7 +37268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3690430, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34873,7 +37288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3698860, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34892,7 +37308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3707204, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34911,7 +37328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3715590, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34930,7 +37348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3723844, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34949,7 +37368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3732120, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34968,7 +37388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3740498, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -34987,7 +37408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3748920, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35006,7 +37428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3757250, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35025,7 +37448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3765592, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35044,7 +37468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3773876, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35063,7 +37488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3782226, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35082,7 +37508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3790486, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35101,7 +37528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3798892, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35120,7 +37548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3807300, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35139,7 +37568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3815684, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35158,7 +37588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3823934, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35177,7 +37608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3832192, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35196,7 +37628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3840496, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35215,7 +37648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3848796, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35234,7 +37668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3857142, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35253,7 +37688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3865536, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35272,7 +37708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3873828, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35291,7 +37728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3882264, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35310,7 +37748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3890524, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35329,7 +37768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3898876, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35348,7 +37788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3907216, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35367,7 +37808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3915620, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35386,7 +37828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3923978, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35405,7 +37848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3932316, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35424,7 +37868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3940694, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35443,7 +37888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3949126, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35462,7 +37908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3957514, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35481,7 +37928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3965918, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35500,7 +37948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3974332, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35519,7 +37968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3982748, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35538,7 +37988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3991144, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35557,7 +38008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 3999440, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35576,7 +38028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4007686, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35595,7 +38048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4015990, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35614,7 +38068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4024328, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35633,7 +38088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4032668, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35652,7 +38108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4040912, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35671,7 +38128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4049274, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35690,7 +38148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4057708, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35709,7 +38168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4065954, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35728,7 +38188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4074236, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35747,7 +38208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4082670, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35766,7 +38228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4090952, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35785,7 +38248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4099222, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35804,7 +38268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4107482, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35823,7 +38288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4115730, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35842,7 +38308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4124150, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35861,7 +38328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4132464, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35880,7 +38348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4140732, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35899,7 +38368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4149090, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35918,7 +38388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4157432, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35937,7 +38408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4165828, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35956,7 +38428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4174146, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35975,7 +38448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4182502, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -35994,7 +38468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4190890, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36013,7 +38488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4199318, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36032,7 +38508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4207654, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36051,7 +38528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4216010, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36070,7 +38548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4224340, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36089,7 +38568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4232684, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36108,7 +38588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4240976, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36127,7 +38608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4249356, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36146,7 +38628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4257744, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36165,7 +38648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4266098, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36184,7 +38668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4274466, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36203,7 +38688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4282804, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36222,7 +38708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4291146, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36241,7 +38728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4299404, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36260,7 +38748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4307824, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36279,7 +38768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4316114, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36298,7 +38788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4324460, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36317,7 +38808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4332876, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36336,7 +38828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4341278, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36355,7 +38848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4349598, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36374,7 +38868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4357952, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36393,7 +38888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4366324, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36412,7 +38908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4374682, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36431,7 +38928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4383114, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36450,7 +38948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4391356, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36469,7 +38968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4399628, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36488,7 +38988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4408024, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36507,7 +39008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4416342, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36526,7 +39028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4424708, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36545,7 +39048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4433144, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36564,7 +39068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4441580, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36583,7 +39088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4450010, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36602,7 +39108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4458418, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36621,7 +39128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4466720, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36640,7 +39148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4474968, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36659,7 +39168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4483264, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36678,7 +39188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4491556, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36697,7 +39208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4499886, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36716,7 +39228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4508222, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36735,7 +39248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4516468, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36754,7 +39268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4524850, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36773,7 +39288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4533180, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36792,7 +39308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4541444, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36811,7 +39328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4549734, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36830,7 +39348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4558148, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36849,7 +39368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4566506, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36868,7 +39388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4574816, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36887,7 +39408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4583246, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36906,7 +39428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4591628, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36925,7 +39448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4600010, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36944,7 +39468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4608334, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36963,7 +39488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4616766, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -36982,7 +39508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4625114, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37001,7 +39528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4633512, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37020,7 +39548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4641820, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37039,7 +39568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4650128, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37058,7 +39588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4658500, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37077,7 +39608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4666792, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37096,7 +39628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4675102, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37115,7 +39648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4683530, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37134,7 +39668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4691896, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37153,7 +39688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4700208, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37172,7 +39708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4708626, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37191,7 +39728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4716940, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37210,7 +39748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4725218, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37229,7 +39768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4733624, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37248,7 +39788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4741978, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37267,7 +39808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4750294, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37286,7 +39828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4758564, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37305,7 +39848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4766926, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37324,7 +39868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4775286, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37343,7 +39888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4783562, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37362,7 +39908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4791816, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37381,7 +39928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4800222, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37400,7 +39948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4808652, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37419,7 +39968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4816936, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37438,7 +39988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4825226, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37457,7 +40008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4833580, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37476,7 +40028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4841842, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37495,7 +40048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4850250, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37514,7 +40068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4858658, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37533,7 +40088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4867038, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37552,7 +40108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4875474, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37571,7 +40128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4883868, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37590,7 +40148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4892288, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37609,7 +40168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4900570, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37628,7 +40188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4908878, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37647,7 +40208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4917134, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37666,7 +40228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4925444, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37685,7 +40248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4933784, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37704,7 +40268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4942116, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37723,7 +40288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4950514, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37742,7 +40308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4958870, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37761,7 +40328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4967210, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37780,7 +40348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4975604, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37799,7 +40368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4983914, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37818,7 +40388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 4992240, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37837,7 +40408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5000496, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37856,7 +40428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5008756, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37875,7 +40448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5017054, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37894,7 +40468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5025316, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37913,7 +40488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5033696, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37932,7 +40508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5041968, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37951,7 +40528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5050346, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37970,7 +40548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5058780, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -37989,7 +40568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5067174, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38008,7 +40588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5075602, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38027,7 +40608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5083918, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38046,7 +40628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5092176, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38065,7 +40648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5100478, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38084,7 +40668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5108770, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38103,7 +40688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5117088, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38122,7 +40708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5125358, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38141,7 +40728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5133712, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38160,7 +40748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5142032, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38179,7 +40768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5150326, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38198,7 +40788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5158596, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38217,7 +40808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5167022, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38236,7 +40828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5175302, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38255,7 +40848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5183588, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38274,7 +40868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5191930, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38293,7 +40888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5200342, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38312,7 +40908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5208736, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38331,7 +40928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5217030, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38350,7 +40948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5225276, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38369,7 +40968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5233584, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38388,7 +40988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5241946, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38407,7 +41008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5250386, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38426,7 +41028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5258666, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38445,7 +41048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5267100, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38464,7 +41068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5275390, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38483,7 +41088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5283700, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38502,7 +41108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5292134, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38521,7 +41128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5300536, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38540,7 +41148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5308802, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38559,7 +41168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5317086, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38578,7 +41188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5325470, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38597,7 +41208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5333894, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38616,7 +41228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5342224, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38635,7 +41248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5350562, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38654,7 +41268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5358820, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38673,7 +41288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5367258, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38692,7 +41308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5375630, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38711,7 +41328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5383938, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38730,7 +41348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5392318, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38749,7 +41368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5400658, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38768,7 +41388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5408972, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38787,7 +41408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5417286, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38806,7 +41428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5425668, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38825,7 +41448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5433996, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38844,7 +41468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5442252, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38863,7 +41488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5450502, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38882,7 +41508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5458748, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38901,7 +41528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5467188, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38920,7 +41548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5475604, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38939,7 +41568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5483926, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38958,7 +41588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5492244, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38977,7 +41608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5500628, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -38996,7 +41628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5508954, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39015,7 +41648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5517392, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39034,7 +41668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5525766, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39053,7 +41688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5534078, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39072,7 +41708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5542472, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39091,7 +41728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5550864, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39110,7 +41748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5559202, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39129,7 +41768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5567478, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39148,7 +41788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5575806, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39167,7 +41808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5584172, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39186,7 +41828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5592574, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39205,7 +41848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5600852, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39224,7 +41868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5609192, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39243,7 +41888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5617622, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39262,7 +41908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5625904, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39281,7 +41928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5634182, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39300,7 +41948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5642490, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39319,7 +41968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5650756, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39338,7 +41988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5659122, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39357,7 +42008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5667514, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39376,7 +42028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5675930, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39395,7 +42048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5684198, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39414,7 +42068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5692446, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39433,7 +42088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5700844, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39452,7 +42108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5709248, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39471,7 +42128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5717630, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39490,7 +42148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5725886, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39509,7 +42168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5734182, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39528,7 +42188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5742450, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39547,7 +42208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5750866, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39566,7 +42228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5759300, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39585,7 +42248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5767584, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39604,7 +42268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5775858, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39623,7 +42288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5784132, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39642,7 +42308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5792442, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39661,7 +42328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5800726, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39680,7 +42348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5808972, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39699,7 +42368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5817316, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39718,7 +42388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5825654, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39737,7 +42408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5834074, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39756,7 +42428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5842316, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39775,7 +42448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5850628, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39794,7 +42468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5859018, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39813,7 +42488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5867388, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39832,7 +42508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5875630, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39851,7 +42528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5883886, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39870,7 +42548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5892200, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39889,7 +42568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5900560, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39908,7 +42588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5908978, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39927,7 +42608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5917348, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39946,7 +42628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5925704, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39965,7 +42648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5934134, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -39984,7 +42668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5942570, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40003,7 +42688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5950820, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40022,7 +42708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5959120, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40041,7 +42728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5967432, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40060,7 +42748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5975852, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40079,7 +42768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5984176, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40098,7 +42788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 5992498, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40117,7 +42808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6000890, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40136,7 +42828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6009242, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40155,7 +42848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6017584, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40174,7 +42868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6026000, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40193,7 +42888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6034416, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40212,7 +42908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6042804, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40231,7 +42928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6051052, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40250,7 +42948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6059488, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40269,7 +42968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6067884, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40288,7 +42988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6076316, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40307,7 +43008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6084644, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40326,7 +43028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6092946, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40345,7 +43048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6101234, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40364,7 +43068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6109524, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40383,7 +43088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6117872, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40402,7 +43108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6126300, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40421,7 +43128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6134558, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40440,7 +43148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6142924, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40459,7 +43168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6151336, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40478,7 +43188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6159656, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40497,7 +43208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6167980, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40516,7 +43228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6176398, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40535,7 +43248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6184676, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40554,7 +43268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6192972, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40573,7 +43288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6201374, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40592,7 +43308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6209658, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40611,7 +43328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6218028, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40630,7 +43348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6226388, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40649,7 +43368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6234632, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40668,7 +43388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6242936, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40687,7 +43408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6251284, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40706,7 +43428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6259666, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40725,7 +43448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6268094, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40744,7 +43468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6276448, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40763,7 +43488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6284690, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40782,7 +43508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6292996, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40801,7 +43528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6301362, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40820,7 +43548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6309630, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40839,7 +43568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6318032, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40858,7 +43588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6326400, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40877,7 +43608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6334790, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40896,7 +43628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6343192, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40915,7 +43648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6351598, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40934,7 +43668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6359974, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40953,7 +43688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6368398, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40972,7 +43708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6376750, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -40991,7 +43728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6384998, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41010,7 +43748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6393336, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41029,7 +43768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6401642, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41048,7 +43788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6409922, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41067,7 +43808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6418358, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41086,7 +43828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6426656, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41105,7 +43848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6434998, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41124,7 +43868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6443378, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41143,7 +43888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6451806, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41162,7 +43908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6460162, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41181,7 +43928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6468422, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41200,7 +43948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6476816, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41219,7 +43968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6485160, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41238,7 +43988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6493454, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41257,7 +44008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6501856, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41276,7 +44028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6510138, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41295,7 +44048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6518506, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41314,7 +44068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6526854, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41333,7 +44088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6535254, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41352,7 +44108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6543564, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41371,7 +44128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6551876, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41390,7 +44148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6560264, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41409,7 +44168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6568624, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41428,7 +44188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6577018, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41447,7 +44208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6585266, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41466,7 +44228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6593686, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41485,7 +44248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6602002, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41504,7 +44268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6610278, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41523,7 +44288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6618670, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41542,7 +44308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6626958, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41561,7 +44328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6635382, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41580,7 +44348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6643798, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41599,7 +44368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6652164, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41618,7 +44388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6660504, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41637,7 +44408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6668864, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41656,7 +44428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6677202, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41675,7 +44448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6685570, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41694,7 +44468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6693954, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41713,7 +44488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6702330, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41732,7 +44508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6710620, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41751,7 +44528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6718898, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41770,7 +44548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6727182, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41789,7 +44568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6735522, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41808,7 +44588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6743934, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41827,7 +44608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6752330, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41846,7 +44628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6760636, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41865,7 +44648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6768934, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41884,7 +44668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6777264, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41903,7 +44688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6785578, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41922,7 +44708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6793916, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41941,7 +44728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6802226, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41960,7 +44748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6810518, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41979,7 +44768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6818804, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -41998,7 +44788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6827122, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42017,7 +44808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6835408, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42036,7 +44828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6843846, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42055,7 +44848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6852136, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42074,7 +44868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6860430, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42093,7 +44888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6868790, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42112,7 +44908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6877068, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42131,7 +44928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6885336, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42150,7 +44948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6893602, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42169,7 +44968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6901882, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42188,7 +44988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6910248, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42207,7 +45008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6918596, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42226,7 +45028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6926998, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42245,7 +45048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6935326, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42264,7 +45068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6943716, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42283,7 +45088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6952040, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42302,7 +45108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6960446, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42321,7 +45128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6968864, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42340,7 +45148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6977300, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42359,7 +45168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6985582, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42378,7 +45188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 6993846, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42397,7 +45208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7002282, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42416,7 +45228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7010622, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42435,7 +45248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7018976, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42454,7 +45268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7027284, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42473,7 +45288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7035722, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42492,7 +45308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7044150, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42511,7 +45328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7052532, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42530,7 +45348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7060914, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42549,7 +45368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7069242, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42568,7 +45388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7077494, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42587,7 +45408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7085932, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42606,7 +45428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7094322, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42625,7 +45448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7102718, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42644,7 +45468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7111084, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42663,7 +45488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7119486, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42682,7 +45508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7127758, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42701,7 +45528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7136068, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42720,7 +45548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7144364, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42739,7 +45568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7152676, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42758,7 +45588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7161102, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42777,7 +45608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7169458, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42796,7 +45628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7177716, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42815,7 +45648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7186094, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42834,7 +45668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7194372, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42853,7 +45688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7202792, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42872,7 +45708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7211210, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42891,7 +45728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7219600, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42910,7 +45748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7227860, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42929,7 +45768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7236148, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42948,7 +45788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7244562, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42967,7 +45808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7252932, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -42986,7 +45828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7261296, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43005,7 +45848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7269566, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43024,7 +45868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7277984, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43043,7 +45888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7286424, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43062,7 +45908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7294728, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43081,7 +45928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7303088, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43100,7 +45948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7311332, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43119,7 +45968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7319632, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43138,7 +45988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7327960, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43157,7 +46008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7336262, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43176,7 +46028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7344544, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43195,7 +46048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7352806, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43214,7 +46068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7361232, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43233,7 +46088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7369534, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43252,7 +46108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7377926, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43271,7 +46128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7386338, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43290,7 +46148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7394582, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43309,7 +46168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7402920, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43328,7 +46188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7411244, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43347,7 +46208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7419608, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43366,7 +46228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7428010, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43385,7 +46248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7436292, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43404,7 +46268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7444656, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43423,7 +46288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7452986, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43442,7 +46308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7461306, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43461,7 +46328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7469674, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43480,7 +46348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7477916, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43499,7 +46368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7486176, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43518,7 +46388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7494512, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43537,7 +46408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7502768, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43556,7 +46428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7511202, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43575,7 +46448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7519562, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43594,7 +46468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7527820, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43613,7 +46488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7536190, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43632,7 +46508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7544622, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43651,7 +46528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7553032, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43670,7 +46548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7561344, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43689,7 +46568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7569634, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43708,7 +46588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7577910, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43727,7 +46608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7586176, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43746,7 +46628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7594440, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43765,7 +46648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7602720, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43784,7 +46668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7611084, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43803,7 +46688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7619426, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43822,7 +46708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7627802, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43841,7 +46728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7636218, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43860,7 +46748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7644526, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43879,7 +46768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7652778, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43898,7 +46788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7661070, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43917,7 +46808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7669332, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43936,7 +46828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7677724, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43955,7 +46848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7686062, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43974,7 +46868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7694332, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -43993,7 +46888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7702630, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44012,7 +46908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7711066, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44031,7 +46928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7719314, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44050,7 +46948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7727600, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44069,7 +46968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7735846, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44088,7 +46988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7744174, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44107,7 +47008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7752442, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44126,7 +47028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7760754, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44145,7 +47048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7769070, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44164,7 +47068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7777474, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44183,7 +47088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7785906, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44202,7 +47108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7794216, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44221,7 +47128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7802622, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44240,7 +47148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7810884, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44259,7 +47168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7819138, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44278,7 +47188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7827578, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44297,7 +47208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7835972, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44316,7 +47228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7844380, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44335,7 +47248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7852802, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44354,7 +47268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7861046, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44373,7 +47288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7869354, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44392,7 +47308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7877724, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44411,7 +47328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7886014, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44430,7 +47348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7894306, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44449,7 +47368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7902660, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44468,7 +47388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7910908, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44487,7 +47408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7919246, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44506,7 +47428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7927556, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44525,7 +47448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7935844, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44544,7 +47468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7944116, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44563,7 +47488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7952368, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44582,7 +47508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7960772, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44601,7 +47528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7969198, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44620,7 +47548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7977472, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44639,7 +47568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7985724, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44658,7 +47588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 7994120, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44677,7 +47608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8002504, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44696,7 +47628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8010794, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44715,7 +47648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8019052, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44734,7 +47668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8027430, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44753,7 +47688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8035704, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44772,7 +47708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8044098, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44791,7 +47728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8052404, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44810,7 +47748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8060714, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44829,7 +47768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8069104, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44848,7 +47788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8077486, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44867,7 +47808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8085784, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44886,7 +47828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8094086, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44905,7 +47848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8102462, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44924,7 +47868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8110798, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44943,7 +47888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8119110, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44962,7 +47908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8127414, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -44981,7 +47928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8135764, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45000,7 +47948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8144154, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45019,7 +47968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8152418, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45038,7 +47988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8160722, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45057,7 +48008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8169016, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45076,7 +48028,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8177328, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45095,7 +48048,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8185768, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45114,7 +48068,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8194190, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45133,7 +48088,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8202538, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45152,7 +48108,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8210972, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45171,7 +48128,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8219256, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45190,7 +48148,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8227530, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45209,7 +48168,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8235810, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45228,7 +48188,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8244148, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45247,7 +48208,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8252560, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45266,7 +48228,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8260962, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45285,7 +48248,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8269294, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45304,7 +48268,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8277712, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45323,7 +48288,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8285960, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45342,7 +48308,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8294310, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45361,7 +48328,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8302672, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45380,7 +48348,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8310988, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45399,7 +48368,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8319246, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45418,7 +48388,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8327544, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45437,7 +48408,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8335824, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45456,7 +48428,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8344086, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45475,7 +48448,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8352514, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45494,7 +48468,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8360828, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45513,7 +48488,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8369074, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45532,7 +48508,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8377316, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45551,7 +48528,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8385754, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45570,7 +48548,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8394174, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45589,7 +48568,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8402522, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45608,7 +48588,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8410956, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45627,7 +48608,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8419244, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45646,7 +48628,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8427542, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45665,7 +48648,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8435926, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45684,7 +48668,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8444310, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45703,7 +48688,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8452636, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45722,7 +48708,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8461072, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45741,7 +48728,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8469434, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45760,7 +48748,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8477694, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45779,7 +48768,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8486064, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45798,7 +48788,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8494498, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45817,7 +48808,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8502918, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45836,7 +48828,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8511270, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45855,7 +48848,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8519534, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45874,7 +48868,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8527950, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45893,7 +48888,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8536204, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45912,7 +48908,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8544584, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45931,7 +48928,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8552878, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45950,7 +48948,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8561166, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45969,7 +48968,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8569486, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -45988,7 +48988,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8577784, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { @@ -46007,7 +49008,8 @@ "Table": "lookup", "BinlogMessageTime": "2017-04-24T04:43:01Z", "BinlogPosition": 8586070, - "XId": 3017 + "XId": 3017, + "GTID": "" }, "Type": "Insert", "Data": { diff --git a/data/fixtures/05.json b/data/fixtures/05.json index 4aa54e7..f9d3bc8 100644 --- a/data/fixtures/05.json +++ b/data/fixtures/05.json @@ -4,7 +4,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:32:20Z", "BinlogPosition": 220, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "DELETE FROM `test_db`.`filler`" @@ -15,7 +16,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:32:45Z", "BinlogPosition": 345, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "DROP TABLE `filler` /* generated by server */" @@ -26,7 +28,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T04:32:50Z", "BinlogPosition": 470, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "DROP TABLE `lookup` /* generated by server */" diff --git a/data/fixtures/06.json b/data/fixtures/06.json index 9a6ce6c..ce8c606 100644 --- a/data/fixtures/06.json +++ b/data/fixtures/06.json @@ -4,7 +4,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T05:44:21Z", "BinlogPosition": 220, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "DELETE FROM `test_db`.`filler`" @@ -15,7 +16,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T05:44:44Z", "BinlogPosition": 589, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "CREATE TABLE `language` (\n `language_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,\n `name` char(20) NOT NULL,\n `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n PRIMARY KEY (`language_id`)\n) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8" @@ -26,14 +28,15 @@ "Table": "language", "BinlogMessageTime": "2017-04-24T05:45:11Z", "BinlogPosition": 771, - "XId": 11 + "XId": 11, + "GTID": "" }, "Type": "Insert", "Data": { "Row": { "(unknown_0)": 70, "(unknown_1)": "German", - "(unknown_2)": "2017-04-24 05:45:11" + "(unknown_2)": "2017-04-24 08:45:11" }, "MappingNotice": "row is missing field(s), ignoring missing" } @@ -44,7 +47,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-04-24T05:45:32Z", "BinlogPosition": 943, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "alter table language add some_field varchar(255) default NULL" @@ -55,13 +59,14 @@ "Table": "language", "BinlogMessageTime": "2017-04-24T05:45:41Z", "BinlogPosition": 1140, - "XId": 13 + "XId": 13, + "GTID": "" }, "Type": "Insert", "Data": { "Row": { "language_id": 71, - "last_update": "2017-04-24 05:45:41", + "last_update": "2017-04-24 08:45:41", "name": "German", "some_field": "some value" }, diff --git a/data/fixtures/07.json b/data/fixtures/07.json index 90279a5..769e0e3 100644 --- a/data/fixtures/07.json +++ b/data/fixtures/07.json @@ -4,7 +4,8 @@ "Table": "(unknown)", "BinlogMessageTime": "2017-05-16T03:44:29Z", "BinlogPosition": 627, - "XId": 0 + "XId": 0, + "GTID": "" }, "Type": "Query", "Query": "CREATE TABLE `departments` (\n `dept_no` char(4) NOT NULL,\n `dept_name` varchar(40) NOT NULL,\n PRIMARY KEY (`dept_no`),\n UNIQUE KEY `dept_name` (`dept_name`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8" @@ -15,7 +16,8 @@ "Table": "departments", "BinlogMessageTime": "2017-05-16T03:45:19Z", "BinlogPosition": 761, - "XId": 456 + "XId": 456, + "GTID": "" }, "Type": "Insert", "Data": { @@ -32,7 +34,8 @@ "Table": "departments", "BinlogMessageTime": "2017-05-16T03:45:29Z", "BinlogPosition": 857, - "XId": 456 + "XId": 456, + "GTID": "" }, "Type": "Insert", "Data": { From 905b5e505d7bdbad5ec920079ed43d4571e50c4c Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Mon, 7 Dec 2020 15:35:53 +0300 Subject: [PATCH 07/10] data/gtid-fixtures: add fixtures for GTID tests --- data/gtid-fixtures/01-include-tables.json | 206 ++++++++++++ data/gtid-fixtures/01.json | 362 ++++++++++++++++++++++ data/gtid-fixtures/01.sql | 64 ++++ data/gtid-fixtures/mysql-bin.01 | Bin 0 -> 5867 bytes 4 files changed, 632 insertions(+) create mode 100644 data/gtid-fixtures/01-include-tables.json create mode 100644 data/gtid-fixtures/01.json create mode 100644 data/gtid-fixtures/01.sql create mode 100644 data/gtid-fixtures/mysql-bin.01 diff --git a/data/gtid-fixtures/01-include-tables.json b/data/gtid-fixtures/01-include-tables.json new file mode 100644 index 0000000..1c68a21 --- /dev/null +++ b/data/gtid-fixtures/01-include-tables.json @@ -0,0 +1,206 @@ +{ + "Header": { + "Schema": "test_db", + "Table": "buildings", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4237, + "XId": 67, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:19" + }, + "Type": "Insert", + "Data": { + "Row": { + "address": "3950 North 1st Street CA 95134", + "building_name": "ACME Headquaters", + "building_no": 1 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "buildings", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4382, + "XId": 67, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:19" + }, + "Type": "Insert", + "Data": { + "Row": { + "address": "5000 North 1st Street CA 95134", + "building_name": "ACME Sales", + "building_no": 2 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4653, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 1, + "room_name": "Amazon", + "room_no": 1 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4762, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 1, + "room_name": "War Room", + "room_no": 2 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4876, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 1, + "room_name": "Office of CEO", + "room_no": 3 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4986, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 2, + "room_name": "Marketing", + "room_no": 4 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 5095, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 2, + "room_name": "Showroom", + "room_no": 5 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 5390, + "XId": 78, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:21" + }, + "Type": "Update", + "OldData": { + "Row": { + "building_no": 2, + "room_name": "Marketing", + "room_no": 4 + }, + "MappingNotice": "" + }, + "NewData": { + "Row": { + "building_no": 2, + "room_name": "MARKETING", + "room_no": 4 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 5519, + "XId": 78, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:21" + }, + "Type": "Update", + "OldData": { + "Row": { + "building_no": 2, + "room_name": "Showroom", + "room_no": 5 + }, + "MappingNotice": "" + }, + "NewData": { + "Row": { + "building_no": 2, + "room_name": "SHOWROOM", + "room_no": 5 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "buildings", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 5836, + "XId": 82, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:22" + }, + "Type": "Delete", + "Data": { + "Row": { + "address": "3950 North 1st Street CA 95134", + "building_name": "ACME Headquaters", + "building_no": 1 + }, + "MappingNotice": "" + } +} diff --git a/data/gtid-fixtures/01.json b/data/gtid-fixtures/01.json new file mode 100644 index 0000000..5f86cd0 --- /dev/null +++ b/data/gtid-fixtures/01.json @@ -0,0 +1,362 @@ +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 428, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test_db` /*!40100 DEFAULT CHARACTER SET utf8 */" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 631, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "DROP TABLE IF EXISTS `buildings` /* generated by server */" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 1011, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "CREATE TABLE `buildings` (\n `building_no` int(11) NOT NULL AUTO_INCREMENT,\n `building_name` varchar(255) NOT NULL,\n `address` varchar(355) NOT NULL,\n PRIMARY KEY (`building_no`)\n) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 1216, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "DROP TABLE IF EXISTS `departments` /* generated by server */" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 1558, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "CREATE TABLE `departments` (\n `dept_no` char(4) NOT NULL,\n `dept_name` varchar(40) NOT NULL,\n PRIMARY KEY (`dept_no`),\n UNIQUE KEY `dept_name` (`dept_name`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 1758, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "DROP TABLE IF EXISTS `filler` /* generated by server */" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 2024, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "CREATE TABLE `filler` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n PRIMARY KEY (`id`)\n) ENGINE=MEMORY DEFAULT CHARSET=utf8" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 2226, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "DROP TABLE IF EXISTS `language` /* generated by server */" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 2704, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "CREATE TABLE `language` (\n `language_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,\n `name` char(20) NOT NULL,\n `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n `some_field` varchar(255) DEFAULT NULL,\n PRIMARY KEY (`language_id`)\n) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 2904, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "DROP TABLE IF EXISTS `lookup` /* generated by server */" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 3238, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "CREATE TABLE `lookup` (\n `id` int(11) NOT NULL,\n `value` int(11) NOT NULL,\n `shorttxt` text NOT NULL,\n `longtxt` text NOT NULL,\n PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 3437, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "DROP TABLE IF EXISTS `rooms` /* generated by server */" +} +{ + "Header": { + "Schema": "test_db", + "Table": "(unknown)", + "BinlogMessageTime": "2020-12-07T12:10:06Z", + "BinlogPosition": 3951, + "XId": 0, + "GTID": "" + }, + "Type": "Query", + "Query": "CREATE TABLE `rooms` (\n `room_no` int(11) NOT NULL AUTO_INCREMENT,\n `room_name` varchar(255) NOT NULL,\n `building_no` int(11) NOT NULL,\n PRIMARY KEY (`room_no`),\n KEY `building_no` (`building_no`),\n CONSTRAINT `rooms_ibfk_1` FOREIGN KEY (`building_no`) REFERENCES `buildings` (`building_no`) ON DELETE CASCADE\n) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8" +} +{ + "Header": { + "Schema": "test_db", + "Table": "buildings", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4237, + "XId": 67, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:19" + }, + "Type": "Insert", + "Data": { + "Row": { + "address": "3950 North 1st Street CA 95134", + "building_name": "ACME Headquaters", + "building_no": 1 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "buildings", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4382, + "XId": 67, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:19" + }, + "Type": "Insert", + "Data": { + "Row": { + "address": "5000 North 1st Street CA 95134", + "building_name": "ACME Sales", + "building_no": 2 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4653, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 1, + "room_name": "Amazon", + "room_no": 1 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4762, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 1, + "room_name": "War Room", + "room_no": 2 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4876, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 1, + "room_name": "Office of CEO", + "room_no": 3 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 4986, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 2, + "room_name": "Marketing", + "room_no": 4 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 5095, + "XId": 71, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:20" + }, + "Type": "Insert", + "Data": { + "Row": { + "building_no": 2, + "room_name": "Showroom", + "room_no": 5 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 5390, + "XId": 78, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:21" + }, + "Type": "Update", + "OldData": { + "Row": { + "building_no": 2, + "room_name": "Marketing", + "room_no": 4 + }, + "MappingNotice": "" + }, + "NewData": { + "Row": { + "building_no": 2, + "room_name": "MARKETING", + "room_no": 4 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "rooms", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 5519, + "XId": 78, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:21" + }, + "Type": "Update", + "OldData": { + "Row": { + "building_no": 2, + "room_name": "Showroom", + "room_no": 5 + }, + "MappingNotice": "" + }, + "NewData": { + "Row": { + "building_no": 2, + "room_name": "SHOWROOM", + "room_no": 5 + }, + "MappingNotice": "" + } +} +{ + "Header": { + "Schema": "test_db", + "Table": "buildings", + "BinlogMessageTime": "2020-12-07T12:10:11Z", + "BinlogPosition": 5836, + "XId": 82, + "GTID": "10440e47-3885-11eb-ac5b-0242ac110002:22" + }, + "Type": "Delete", + "Data": { + "Row": { + "address": "3950 North 1st Street CA 95134", + "building_name": "ACME Headquaters", + "building_no": 1 + }, + "MappingNotice": "" + } +} diff --git a/data/gtid-fixtures/01.sql b/data/gtid-fixtures/01.sql new file mode 100644 index 0000000..262290b --- /dev/null +++ b/data/gtid-fixtures/01.sql @@ -0,0 +1,64 @@ +BEGIN; + +INSERT INTO `test_db`.`buildings` +VALUES(1, 'ACME Headquaters', '3950 North 1st Street CA 95134'); + + +INSERT INTO `test_db`.`buildings` +VALUES(2, 'ACME Sales', '5000 North 1st Street CA 95134'); + +COMMIT; +BEGIN; + + +INSERT INTO `test_db`.`rooms` +VALUES(1, 'Amazon', 1); + + +INSERT INTO `test_db`.`rooms` +VALUES(2, 'War Room', 1); + + +INSERT INTO `test_db`.`rooms` +VALUES(3, 'Office of CEO', 1); + + +INSERT INTO `test_db`.`rooms` +VALUES(4, 'Marketing', 2); + + +INSERT INTO `test_db`.`rooms` +VALUES(5, 'Showroom', 2); + +COMMIT; + +BEGIN; + +UPDATE `test_db`.`rooms` +SET room_no=4, + room_name='MARKETING', + building_no=2 +WHERE room_no=4 + AND room_name='Marketing' + AND building_no=2; + + +UPDATE `test_db`.`rooms` +SET room_no=5, + room_name='SHOWROOM', + building_no=2 +WHERE room_no=5 + AND room_name='Showroom' + AND building_no=2; + +COMMIT; + +BEGIN; + +DELETE +FROM `test_db`.`buildings` +WHERE building_no=1 + AND building_name='ACME Headquaters' + AND address='3950 North 1st Street CA 95134'; + +COMMIT; diff --git a/data/gtid-fixtures/mysql-bin.01 b/data/gtid-fixtures/mysql-bin.01 new file mode 100644 index 0000000000000000000000000000000000000000..90c944eb594a873b454e865546ed1efb14c36e54 GIT binary patch literal 5867 zcmb_gdu&rx7(Zv+ba4x7)4or@FejrG?aY5X;Jw#|X+_i*9@2+7H*m;MiPs-P3v(KR*4`$UWAs zk?F+BpYy+y^Ky^;@yJ)(!OUFTP~fsL2}`j)m&YL3;)Y(i=R*q`U>@Frtr6I<1AKE` zLP#UKt6`7vcCsyN#H!|!xgb_!F|@1^jtvn0*X380ph~-ypwguTRJx#LZhKq1qm8T-7=7-(5QBYBMoigdI(T3czi+M|T}g4DG{@hh&N>ZbuUNOQ*EV%oCcrLFx3 zB&5HTM+y|MQkQsuVs{f9(+wbeAfU-|TY$h%m8OSA)v4kGaA}$)& zbS)D#v=|+@pJuhpdMyJ`c6aW(T!ONf#aL1_Bn~bshhQ^*leag!=LsmcKpsxBo&Q@j z6HFn5rfNC{DXga>G@%<9nCbg zIh|vAOfVXYWwb1$ii@-ti}d^59>sq*y;HrLHi^hElIH4Ws(O3fUbWM$>*?;UqDVTO z5}$xcoyer{ku7ti+;_07mE?X(KGjy9bDrFxHO?1A?wuSsAmlQ8TOFx4Ck2f@TJ_O=a=3NSN)NV8a@;9~#v?avcQ0>P*RPYgyQMu?6g zI+(i>XF6JC8JQ2iu;p-yjJEznq^vGuNh!(dr97)V zo4m;$+VHVMWOXA*9fO?-r^sL;nba~DYBT-Y4oNuXu-;gLqlV+)@$(kCW#{H*f#YkC zI>B}(h#fqBMvO#kT&+beKPVMc)T4TQ&?(AQbZ6qR+oVi1v({RYiK#pjJOjJ~8-M?B zMr2|bq;|v3gjX~f)#JHn99m|@(V>jCT`3_sT^`9aj)WuN{mi!X#n}SMHhANoWzC_W zrq?mmi_QDG;)$Ps=f^Oxy7Hf4EU=N#@5lMk-b{0PHWAlhF5;P>(j3uQD==qAQ6GpT zqj2uXt&PEOMZ+mLhD1|q$IJ;Dg#3P(OW~l~qXvSCr=R+~G}I606P3D(_t;R%rc+vY zFrg(OVm_DH=;9_ZT$Gf_SctTMmE~vCqPDU;eRpV6pH$t$tT-h+t>x9_RpkwS_?j1f z5!KxYQp=%9O*~K2={32v7htK^^@mTwv4!=@5*&3L2alh()GLSgZV))80!!auO{##U zjpJfz(W#VkG#`J(&ck@HKAOw{w~7xuCP!AMGlp@W0o2p(GX(3{UNWu6%Wuhqk-Jx( zC!Aw=1m^ST_7hJJOW8cml2MY)={%b}i@dShMprh9Y(4=}DQI*P&WcProx0FrW&4ZA zY9tuDSi3EO0bfmQS$X)pE1z7nY`%c;IgldF-h&AuMLvAS3A`WoY1b5%PA#P;UH(~6 z)@o@p;Q_FN4W50aqi^v^81-E~Zy@Mb+}bezix1 z_UKXrV;-P}MJH`+ncZriiY-$KxRh@7VrTD#W!u}x)_DhCEBsh}*KB0PAFDGs19;{6 zG`scs%WKg9`?l)=slUL0o$w<%Jh<9awNSDngtyYi>N(P-!Ux0O$M!8nD>HyXq!X@o z)`wCk54JAhO=Ai#T9(*swY62F*5)d*ZutC1sN8_cE8u#nK-og9#CHA+Zq*URD-KNygzIonjVl&hv$%a*@BJB~J3Ef<0K zSr&xO6fI-5oW$M4d@HK4Dt3VIjjZc%HBrUML`g*-Nb8sZ$EQs}$yH3! z5wt0C_1m8My~5Q(u=BE{##~`#>||LqL;cWs(Ai68Px>Wihb65_&PY?=SHjsXV5f$? zOA;=8Tc#4<;9z2vM$?1TrTWn0(KqL9kUY91)k+?h@7uLqc*FucAgM8U*rBHoPc*Ye zgCk%Z(HgE5A<5f&l3FEir?2?UBfMcUk4tLI8-9)1Nnmw)2y2ecBJXei0JQ{>Co@j= z!WJ$qeXs_%1(ADA$`%uOrYTOWoWT6}a(2LXFB%X;-V6r*C6OQcvpR-01d;c%Ab8~} zCFJ1i-)%y*IatCzxTdivxf&+q{FyTO=g$=XoodkS?Zq_NE`5Ka6oM+*suaS~10TO9 zLbwC$JR_-@A(R&7O#aal-!i|?=fMDO`|{>(Xi3y*7qjGrEnEj0SMI@WQKw(oHYu*t zEK{6Vd40^jL`c`br_ZASF+Q9iD%EK`$HN|@2`1qzk c`G1X%SAK37!LUT~PBF{=d@_FjbIXta09Yp1LI3~& literal 0 HcmV?d00001 From 9d6e05e0571bf0af3bfd6e9240f8508327b87797 Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Mon, 7 Dec 2020 15:36:20 +0300 Subject: [PATCH 08/10] binlog-parser: update file integration test --- src/zalora/binlog-parser/parse_binlog_file_integration_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/zalora/binlog-parser/parse_binlog_file_integration_test.go b/src/zalora/binlog-parser/parse_binlog_file_integration_test.go index 0a49130..d39dd54 100644 --- a/src/zalora/binlog-parser/parse_binlog_file_integration_test.go +++ b/src/zalora/binlog-parser/parse_binlog_file_integration_test.go @@ -52,6 +52,9 @@ func TestParseBinlogFile(t *testing.T) { {"fixtures/mysql-bin.01", "fixtures/01-no-events.json", []string{"unknown_table"}, nil}, // only unknown table is included - no events parsed {"fixtures/mysql-bin.01", "fixtures/01.json", nil, []string{"test_db"}}, // inlcude schemas {"fixtures/mysql-bin.01", "fixtures/01-no-events.json", nil, []string{"unknown_schema"}}, // only unknown schema is included - no events parsed + {"gtid-fixtures/mysql-bin.01", "gtid-fixtures/01.json", nil, nil}, + {"gtid-fixtures/mysql-bin.01", "gtid-fixtures/01-include-tables.json", []string{"buildings","departments","filler","language","lookup","rooms"}, nil}, + } for _, tc := range testCases { From face7220f306c82c285a919523ad1f12bf8e506b Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Tue, 8 Dec 2020 09:47:07 +0300 Subject: [PATCH 09/10] data/fixtures: fix timestamp timezone in 06.json --- data/fixtures/06.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/fixtures/06.json b/data/fixtures/06.json index ce8c606..7609f7d 100644 --- a/data/fixtures/06.json +++ b/data/fixtures/06.json @@ -36,7 +36,7 @@ "Row": { "(unknown_0)": 70, "(unknown_1)": "German", - "(unknown_2)": "2017-04-24 08:45:11" + "(unknown_2)": "2017-04-24 05:45:11" }, "MappingNotice": "row is missing field(s), ignoring missing" } @@ -66,7 +66,7 @@ "Data": { "Row": { "language_id": 71, - "last_update": "2017-04-24 08:45:41", + "last_update": "2017-04-24 05:45:41", "name": "German", "some_field": "some value" }, From 020bef5ff55f405c0dd705d3d6c42af1de535406 Mon Sep 17 00:00:00 2001 From: Selman Kayrancioglu Date: Wed, 23 Dec 2020 12:19:04 +0300 Subject: [PATCH 10/10] data/gtid-fixtures: add plaintext-mysql-bin.01 --- data/gtid-fixtures/plaintext-mysql-bin.01 | 373 ++++++++++++++++++++++ 1 file changed, 373 insertions(+) create mode 100644 data/gtid-fixtures/plaintext-mysql-bin.01 diff --git a/data/gtid-fixtures/plaintext-mysql-bin.01 b/data/gtid-fixtures/plaintext-mysql-bin.01 new file mode 100644 index 0000000..e87cda9 --- /dev/null +++ b/data/gtid-fixtures/plaintext-mysql-bin.01 @@ -0,0 +1,373 @@ +/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/; +/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/; +DELIMITER /*!*/; +# at 4 +#201207 15:09:40 server id 1 end_log_pos 123 CRC32 0x00deea5d Start: binlog v 4, server v 5.7.32-log created 201207 15:09:40 at startup +# Warning: this binlog is either in use or was not closed properly. +ROLLBACK/*!*/; +BINLOG ' +hBvOXw8BAAAAdwAAAHsAAAABAAQANS43LjMyLWxvZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA +AAAAAAAAAAAAAAAAAACEG85fEzgNAAgAEgAEBAQEEgAAXwAEGggAAAAICAgCAAAACgoKKioAEjQA +AV3q3gA= +'/*!*/; +# at 123 +#201207 15:09:40 server id 1 end_log_pos 194 CRC32 0xc682f482 Previous-GTIDs +# 10440e47-3885-11eb-ac5b-0242ac110002:1-5 +# at 194 +#201207 15:10:06 server id 1 end_log_pos 259 CRC32 0x01ba5b9c GTID last_committed=0 sequence_number=1 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:6'/*!*/; +# at 259 +#201207 15:10:06 server id 1 end_log_pos 428 CRC32 0xc7509b98 Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +SET @@session.pseudo_thread_id=4/*!*/; +SET @@session.foreign_key_checks=0, @@session.sql_auto_is_null=0, @@session.unique_checks=0, @@session.autocommit=1/*!*/; +SET @@session.sql_mode=524288/*!*/; +SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/; +/*!\C utf8 *//*!*/; +SET @@session.character_set_client=33,@@session.collation_connection=33,@@session.collation_server=8/*!*/; +SET @@session.lc_time_names=0/*!*/; +SET @@session.collation_database=DEFAULT/*!*/; +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `test_db` /*!40100 DEFAULT CHARACTER SET utf8 */ +/*!*/; +# at 428 +#201207 15:10:06 server id 1 end_log_pos 493 CRC32 0x51f3d0d6 GTID last_committed=1 sequence_number=2 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:7'/*!*/; +# at 493 +#201207 15:10:06 server id 1 end_log_pos 631 CRC32 0x17b93db2 Query thread_id=4 exec_time=0 error_code=0 +use `test_db`/*!*/; +SET TIMESTAMP=1607343006/*!*/; +DROP TABLE IF EXISTS `buildings` /* generated by server */ +/*!*/; +# at 631 +#201207 15:10:06 server id 1 end_log_pos 696 CRC32 0x27498bad GTID last_committed=2 sequence_number=3 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:8'/*!*/; +# at 696 +#201207 15:10:06 server id 1 end_log_pos 1011 CRC32 0x1f99d55f Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +CREATE TABLE `buildings` ( + `building_no` int(11) NOT NULL AUTO_INCREMENT, + `building_name` varchar(255) NOT NULL, + `address` varchar(355) NOT NULL, + PRIMARY KEY (`building_no`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 +/*!*/; +# at 1011 +#201207 15:10:06 server id 1 end_log_pos 1076 CRC32 0x93356b77 GTID last_committed=3 sequence_number=4 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:9'/*!*/; +# at 1076 +#201207 15:10:06 server id 1 end_log_pos 1216 CRC32 0xa39f2405 Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +DROP TABLE IF EXISTS `departments` /* generated by server */ +/*!*/; +# at 1216 +#201207 15:10:06 server id 1 end_log_pos 1281 CRC32 0x838132c0 GTID last_committed=4 sequence_number=5 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:10'/*!*/; +# at 1281 +#201207 15:10:06 server id 1 end_log_pos 1558 CRC32 0x00e330fd Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +CREATE TABLE `departments` ( + `dept_no` char(4) NOT NULL, + `dept_name` varchar(40) NOT NULL, + PRIMARY KEY (`dept_no`), + UNIQUE KEY `dept_name` (`dept_name`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 +/*!*/; +# at 1558 +#201207 15:10:06 server id 1 end_log_pos 1623 CRC32 0x31bc81d0 GTID last_committed=5 sequence_number=6 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:11'/*!*/; +# at 1623 +#201207 15:10:06 server id 1 end_log_pos 1758 CRC32 0xd09d50b2 Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +DROP TABLE IF EXISTS `filler` /* generated by server */ +/*!*/; +# at 1758 +#201207 15:10:06 server id 1 end_log_pos 1823 CRC32 0x298ba199 GTID last_committed=6 sequence_number=7 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:12'/*!*/; +# at 1823 +#201207 15:10:06 server id 1 end_log_pos 2024 CRC32 0x3f8469a1 Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +CREATE TABLE `filler` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + PRIMARY KEY (`id`) +) ENGINE=MEMORY DEFAULT CHARSET=utf8 +/*!*/; +# at 2024 +#201207 15:10:06 server id 1 end_log_pos 2089 CRC32 0xf8ddfa74 GTID last_committed=7 sequence_number=8 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:13'/*!*/; +# at 2089 +#201207 15:10:06 server id 1 end_log_pos 2226 CRC32 0x1932fd41 Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +DROP TABLE IF EXISTS `language` /* generated by server */ +/*!*/; +# at 2226 +#201207 15:10:06 server id 1 end_log_pos 2291 CRC32 0x1a975603 GTID last_committed=8 sequence_number=9 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:14'/*!*/; +# at 2291 +#201207 15:10:06 server id 1 end_log_pos 2704 CRC32 0x4c8a77b0 Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +SET @@session.explicit_defaults_for_timestamp=0/*!*/; +CREATE TABLE `language` ( + `language_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, + `name` char(20) NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `some_field` varchar(255) DEFAULT NULL, + PRIMARY KEY (`language_id`) +) ENGINE=InnoDB AUTO_INCREMENT=72 DEFAULT CHARSET=utf8 +/*!*/; +# at 2704 +#201207 15:10:06 server id 1 end_log_pos 2769 CRC32 0xed931d89 GTID last_committed=9 sequence_number=10 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:15'/*!*/; +# at 2769 +#201207 15:10:06 server id 1 end_log_pos 2904 CRC32 0x4ff4434e Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +DROP TABLE IF EXISTS `lookup` /* generated by server */ +/*!*/; +# at 2904 +#201207 15:10:06 server id 1 end_log_pos 2969 CRC32 0x81b88919 GTID last_committed=10 sequence_number=11 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:16'/*!*/; +# at 2969 +#201207 15:10:06 server id 1 end_log_pos 3238 CRC32 0x898ee840 Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +CREATE TABLE `lookup` ( + `id` int(11) NOT NULL, + `value` int(11) NOT NULL, + `shorttxt` text NOT NULL, + `longtxt` text NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 +/*!*/; +# at 3238 +#201207 15:10:06 server id 1 end_log_pos 3303 CRC32 0x245dfd03 GTID last_committed=11 sequence_number=12 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:17'/*!*/; +# at 3303 +#201207 15:10:06 server id 1 end_log_pos 3437 CRC32 0x0cde979e Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +DROP TABLE IF EXISTS `rooms` /* generated by server */ +/*!*/; +# at 3437 +#201207 15:10:06 server id 1 end_log_pos 3502 CRC32 0x2e5737ea GTID last_committed=12 sequence_number=13 rbr_only=no +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:18'/*!*/; +# at 3502 +#201207 15:10:06 server id 1 end_log_pos 3951 CRC32 0xca279bac Query thread_id=4 exec_time=0 error_code=0 +SET TIMESTAMP=1607343006/*!*/; +CREATE TABLE `rooms` ( + `room_no` int(11) NOT NULL AUTO_INCREMENT, + `room_name` varchar(255) NOT NULL, + `building_no` int(11) NOT NULL, + PRIMARY KEY (`room_no`), + KEY `building_no` (`building_no`), + CONSTRAINT `rooms_ibfk_1` FOREIGN KEY (`building_no`) REFERENCES `buildings` (`building_no`) ON DELETE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 +/*!*/; +# at 3951 +#201207 15:10:11 server id 1 end_log_pos 4016 CRC32 0x0f172b3c GTID last_committed=13 sequence_number=14 rbr_only=yes +/*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/; +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:19'/*!*/; +# at 4016 +#201207 15:10:11 server id 1 end_log_pos 4086 CRC32 0x56b9defa Query thread_id=3 exec_time=0 error_code=0 +SET TIMESTAMP=1607343011/*!*/; +SET @@session.foreign_key_checks=1, @@session.unique_checks=1/*!*/; +SET @@session.sql_mode=1436549152/*!*/; +BEGIN +/*!*/; +# at 4086 +#201207 15:10:11 server id 1 end_log_pos 4147 CRC32 0xbbff8971 Table_map: `test_db`.`buildings` mapped to number 109 +# at 4147 +#201207 15:10:11 server id 1 end_log_pos 4237 CRC32 0x65eba910 Write_rows: table id 109 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAAPQAAADMQAAAAAG0AAAAAAAMAB3Rlc3RfZGIACWJ1aWxkaW5ncwADAw8PBP0CKQQA +cYn/uw== +oxvOXx4BAAAAWgAAAI0QAAAAAG0AAAAAAAEAAgAD//gBAAAAEABBQ01FIEhlYWRxdWF0ZXJzHgAz +OTUwIE5vcnRoIDFzdCBTdHJlZXQgQ0EgOTUxMzQQqetl +'/*!*/; +### INSERT INTO `test_db`.`buildings` +### SET +### @1=1 +### @2='ACME Headquaters' +### @3='3950 North 1st Street CA 95134' +# at 4237 +#201207 15:10:11 server id 1 end_log_pos 4298 CRC32 0xd536a075 Table_map: `test_db`.`buildings` mapped to number 109 +# at 4298 +#201207 15:10:11 server id 1 end_log_pos 4382 CRC32 0x671ec340 Write_rows: table id 109 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAAPQAAAMoQAAAAAG0AAAAAAAMAB3Rlc3RfZGIACWJ1aWxkaW5ncwADAw8PBP0CKQQA +daA21Q== +oxvOXx4BAAAAVAAAAB4RAAAAAG0AAAAAAAEAAgAD//gCAAAACgBBQ01FIFNhbGVzHgA1MDAwIE5v +cnRoIDFzdCBTdHJlZXQgQ0EgOTUxMzRAwx5n +'/*!*/; +### INSERT INTO `test_db`.`buildings` +### SET +### @1=2 +### @2='ACME Sales' +### @3='5000 North 1st Street CA 95134' +# at 4382 +#201207 15:10:11 server id 1 end_log_pos 4413 CRC32 0x7141add5 Xid = 67 +COMMIT/*!*/; +# at 4413 +#201207 15:10:11 server id 1 end_log_pos 4478 CRC32 0x5a91afea GTID last_committed=14 sequence_number=15 rbr_only=yes +/*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/; +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:20'/*!*/; +# at 4478 +#201207 15:10:11 server id 1 end_log_pos 4546 CRC32 0xe7c0f62a Query thread_id=3 exec_time=0 error_code=0 +SET TIMESTAMP=1607343011/*!*/; +BEGIN +/*!*/; +# at 4546 +#201207 15:10:11 server id 1 end_log_pos 4601 CRC32 0x9b580d6d Table_map: `test_db`.`rooms` mapped to number 110 +# at 4601 +#201207 15:10:11 server id 1 end_log_pos 4653 CRC32 0x5428bf31 Write_rows: table id 110 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAANwAAAPkRAAAAAG4AAAAAAAEAB3Rlc3RfZGIABXJvb21zAAMDDwMC/QIAbQ1Ymw== +oxvOXx4BAAAANAAAAC0SAAAAAG4AAAAAAAEAAgAD//gBAAAABgBBbWF6b24BAAAAMb8oVA== +'/*!*/; +### INSERT INTO `test_db`.`rooms` +### SET +### @1=1 +### @2='Amazon' +### @3=1 +# at 4653 +#201207 15:10:11 server id 1 end_log_pos 4708 CRC32 0xb812b3f0 Table_map: `test_db`.`rooms` mapped to number 110 +# at 4708 +#201207 15:10:11 server id 1 end_log_pos 4762 CRC32 0x52eaf998 Write_rows: table id 110 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAANwAAAGQSAAAAAG4AAAAAAAEAB3Rlc3RfZGIABXJvb21zAAMDDwMC/QIA8LMSuA== +oxvOXx4BAAAANgAAAJoSAAAAAG4AAAAAAAEAAgAD//gCAAAACABXYXIgUm9vbQEAAACY+epS +'/*!*/; +### INSERT INTO `test_db`.`rooms` +### SET +### @1=2 +### @2='War Room' +### @3=1 +# at 4762 +#201207 15:10:11 server id 1 end_log_pos 4817 CRC32 0xc64c2800 Table_map: `test_db`.`rooms` mapped to number 110 +# at 4817 +#201207 15:10:11 server id 1 end_log_pos 4876 CRC32 0x8127a7db Write_rows: table id 110 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAANwAAANESAAAAAG4AAAAAAAEAB3Rlc3RfZGIABXJvb21zAAMDDwMC/QIAAChMxg== +oxvOXx4BAAAAOwAAAAwTAAAAAG4AAAAAAAEAAgAD//gDAAAADQBPZmZpY2Ugb2YgQ0VPAQAAANun +J4E= +'/*!*/; +### INSERT INTO `test_db`.`rooms` +### SET +### @1=3 +### @2='Office of CEO' +### @3=1 +# at 4876 +#201207 15:10:11 server id 1 end_log_pos 4931 CRC32 0x9eaeb958 Table_map: `test_db`.`rooms` mapped to number 110 +# at 4931 +#201207 15:10:11 server id 1 end_log_pos 4986 CRC32 0x555a4374 Write_rows: table id 110 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAANwAAAEMTAAAAAG4AAAAAAAEAB3Rlc3RfZGIABXJvb21zAAMDDwMC/QIAWLmung== +oxvOXx4BAAAANwAAAHoTAAAAAG4AAAAAAAEAAgAD//gEAAAACQBNYXJrZXRpbmcCAAAAdENaVQ== +'/*!*/; +### INSERT INTO `test_db`.`rooms` +### SET +### @1=4 +### @2='Marketing' +### @3=2 +# at 4986 +#201207 15:10:11 server id 1 end_log_pos 5041 CRC32 0x4df018f3 Table_map: `test_db`.`rooms` mapped to number 110 +# at 5041 +#201207 15:10:11 server id 1 end_log_pos 5095 CRC32 0xb69eb460 Write_rows: table id 110 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAANwAAALETAAAAAG4AAAAAAAEAB3Rlc3RfZGIABXJvb21zAAMDDwMC/QIA8xjwTQ== +oxvOXx4BAAAANgAAAOcTAAAAAG4AAAAAAAEAAgAD//gFAAAACABTaG93cm9vbQIAAABgtJ62 +'/*!*/; +### INSERT INTO `test_db`.`rooms` +### SET +### @1=5 +### @2='Showroom' +### @3=2 +# at 5095 +#201207 15:10:11 server id 1 end_log_pos 5126 CRC32 0x0cca6f65 Xid = 71 +COMMIT/*!*/; +# at 5126 +#201207 15:10:11 server id 1 end_log_pos 5191 CRC32 0x5e4f62f9 GTID last_committed=15 sequence_number=16 rbr_only=yes +/*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/; +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:21'/*!*/; +# at 5191 +#201207 15:10:11 server id 1 end_log_pos 5259 CRC32 0x640af57e Query thread_id=3 exec_time=0 error_code=0 +SET TIMESTAMP=1607343011/*!*/; +BEGIN +/*!*/; +# at 5259 +#201207 15:10:11 server id 1 end_log_pos 5314 CRC32 0x8ad4a5ca Table_map: `test_db`.`rooms` mapped to number 110 +# at 5314 +#201207 15:10:11 server id 1 end_log_pos 5390 CRC32 0x87b40b03 Update_rows: table id 110 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAANwAAAMIUAAAAAG4AAAAAAAEAB3Rlc3RfZGIABXJvb21zAAMDDwMC/QIAyqXUig== +oxvOXx8BAAAATAAAAA4VAAAAAG4AAAAAAAEAAgAD///4BAAAAAkATWFya2V0aW5nAgAAAPgEAAAA +CQBNQVJLRVRJTkcCAAAAAwu0hw== +'/*!*/; +### UPDATE `test_db`.`rooms` +### WHERE +### @1=4 +### @2='Marketing' +### @3=2 +### SET +### @1=4 +### @2='MARKETING' +### @3=2 +# at 5390 +#201207 15:10:11 server id 1 end_log_pos 5445 CRC32 0xb1bcc756 Table_map: `test_db`.`rooms` mapped to number 110 +# at 5445 +#201207 15:10:11 server id 1 end_log_pos 5519 CRC32 0x9d3ac43f Update_rows: table id 110 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAANwAAAEUVAAAAAG4AAAAAAAEAB3Rlc3RfZGIABXJvb21zAAMDDwMC/QIAVse8sQ== +oxvOXx8BAAAASgAAAI8VAAAAAG4AAAAAAAEAAgAD///4BQAAAAgAU2hvd3Jvb20CAAAA+AUAAAAI +AFNIT1dST09NAgAAAD/EOp0= +'/*!*/; +### UPDATE `test_db`.`rooms` +### WHERE +### @1=5 +### @2='Showroom' +### @3=2 +### SET +### @1=5 +### @2='SHOWROOM' +### @3=2 +# at 5519 +#201207 15:10:11 server id 1 end_log_pos 5550 CRC32 0xb35d24c7 Xid = 78 +COMMIT/*!*/; +# at 5550 +#201207 15:10:11 server id 1 end_log_pos 5615 CRC32 0x92bf6242 GTID last_committed=16 sequence_number=17 rbr_only=yes +/*!50718 SET TRANSACTION ISOLATION LEVEL READ COMMITTED*//*!*/; +SET @@SESSION.GTID_NEXT= '10440e47-3885-11eb-ac5b-0242ac110002:22'/*!*/; +# at 5615 +#201207 15:10:11 server id 1 end_log_pos 5685 CRC32 0xdb1242fe Query thread_id=3 exec_time=0 error_code=0 +SET TIMESTAMP=1607343011/*!*/; +BEGIN +/*!*/; +# at 5685 +#201207 15:10:11 server id 1 end_log_pos 5746 CRC32 0x526ebe46 Table_map: `test_db`.`buildings` mapped to number 109 +# at 5746 +#201207 15:10:11 server id 1 end_log_pos 5836 CRC32 0xac1ee99c Delete_rows: table id 109 flags: STMT_END_F + +BINLOG ' +oxvOXxMBAAAAPQAAAHIWAAAAAG0AAAAAAAMAB3Rlc3RfZGIACWJ1aWxkaW5ncwADAw8PBP0CKQQA +Rr5uUg== +oxvOXyABAAAAWgAAAMwWAAAAAG0AAAAAAAEAAgAD//gBAAAAEABBQ01FIEhlYWRxdWF0ZXJzHgAz +OTUwIE5vcnRoIDFzdCBTdHJlZXQgQ0EgOTUxMzSc6R6s +'/*!*/; +### DELETE FROM `test_db`.`buildings` +### WHERE +### @1=1 +### @2='ACME Headquaters' +### @3='3950 North 1st Street CA 95134' +# at 5836 +#201207 15:10:11 server id 1 end_log_pos 5867 CRC32 0xe099f5f1 Xid = 82 +COMMIT/*!*/; +SET @@SESSION.GTID_NEXT= 'AUTOMATIC' /* added by mysqlbinlog */ /*!*/; +DELIMITER ; +# End of log file +/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/; +/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;