diff --git a/posthog/temporal/batch_exports/postgres_batch_export.py b/posthog/temporal/batch_exports/postgres_batch_export.py index 89b4518940799..a9e8450f18d9f 100644 --- a/posthog/temporal/batch_exports/postgres_batch_export.py +++ b/posthog/temporal/batch_exports/postgres_batch_export.py @@ -670,6 +670,8 @@ async def run(self, inputs: PostgresBatchExportInputs): # A user added a unique constraint on their table, but batch exports (particularly events) # can cause duplicates. "UniqueViolation", + # Something changed in the target table's schema that we were not expecting. + "UndefinedColumn", ], finish_inputs=finish_inputs, )