File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -688,9 +688,9 @@ def fetchone(self):
688688 binlog_event .event_type == TABLE_MAP_EVENT
689689 and binlog_event .event is not None
690690 ):
691- self .table_map [
692- binlog_event .event .table_id
693- ] = binlog_event . event . get_table ( )
691+ self .table_map [binlog_event . event . table_id ] = (
692+ binlog_event .event .get_table ()
693+ )
694694
695695 # event is none if we have filter it on packet level
696696 # we filter also not allowed events
Original file line number Diff line number Diff line change 11"""Read binlog files"""
2+
23import struct
34
45from pymysqlreplication import constants
Original file line number Diff line number Diff line change 11"""Test abnormal conditions, such as caused by a MySQL crash
22"""
3+
34import os .path
45
56from pymysqlreplication .tests import base
You can’t perform that action at this time.
0 commit comments