We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a2418f commit 1c512b5Copy full SHA for 1c512b5
pymysqlreplication/packet.py
@@ -42,6 +42,12 @@ class BinLogPacketWrapper(object):
42
constants.WRITE_ROWS_EVENT_V2: row_event.WriteRowsEvent,
43
constants.DELETE_ROWS_EVENT_V2: row_event.DeleteRowsEvent,
44
constants.TABLE_MAP_EVENT: row_event.TableMapEvent,
45
+ #5.6 GTID enabled replication events
46
+ constants.INTVAR_EVENT: event.NotImplementedEvent,
47
+ constants.GTID_LOG_EVENT: event.NotImplementedEvent,
48
+ constants.ANONYMOUS_GTID_LOG_EVENT: event.NotImplementedEvent,
49
+ constants.PREVIOUS_GTIDS_LOG_EVENT: event.NotImplementedEvent
50
+
51
}
52
53
def __init__(self, from_packet, table_map, ctl_connection):
0 commit comments