Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pymysqlreplication/row_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ def __init__(self, from_packet, event_size, table_map, ctl_connection, **kwargs)
self._processed = False
return

# Use pt-online-schema-change will auto generate a new table which name starts with '_',
# just ignore it.
if self.table.startswith('_'):
self._processed = False
return

if self.__only_schemas is not None and self.schema not in self.__only_schemas:
self._processed = False
return
Expand Down