Skip to content

Commit

Permalink
Merge pull request #101 from MattExact/postgres-check-all-changes
Browse files Browse the repository at this point in the history
Postgres: Check all changes in replication message
  • Loading branch information
long2ice authored May 7, 2024
2 parents e144418 + 0be3c1e commit aebac61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meilisync/source/postgres.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _consumer(self, msg: ReplicationMessage):
kind = change.get("kind")
table = change.get("table")
if table not in self.tables:
return
continue
columnnames = change.get("columnnames", [])
columnvalues = change.get("columnvalues", [])
columntypes = change.get("columntypes", [])
Expand Down

0 comments on commit aebac61

Please sign in to comment.