Skip to content

Commit

Permalink
Update log entry
Browse files Browse the repository at this point in the history
  • Loading branch information
rossgray committed Jan 10, 2025
1 parent 666af31 commit 1bc0e78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions posthog/temporal/batch_exports/postgres_batch_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -680,9 +680,9 @@ async def insert_into_postgres_activity(inputs: PostgresInsertInputs) -> Records
"Insufficient privileges to get table columns for table '%s.%s'; "
"will assume all columns are present. If this results in an error, please grant SELECT "
"permissions on this table or ensure the destination table is using the latest schema "
"as described in the docs.",
schema=inputs.schema,
table_name=inputs.table_name,
"as described in the docs: https://posthog.com/docs/cdp/batch-exports/postgres",
inputs.schema,
inputs.table_name,
)
except psycopg.errors.UndefinedTable:
# this can happen if the table doesn't exist yet
Expand Down

0 comments on commit 1bc0e78

Please sign in to comment.