estuary / connectors

Connectors for capturing data from external data sources
Other
50 stars 17 forks source link

source-postgres: exclude temp tables from discovery #2133

Closed psFried closed 2 weeks ago

psFried commented 2 weeks ago

Filters out temporary and unlogged tables during discovery. These tables cause validation to fail because they cannot be added to publications. The filtering is done based on the pg_class.relpersistence values, described in the docs: https://www.postgresql.org/docs/current/catalog-pg-class.html#CATALOG-PG-CLASS


This change is Reviewable