From e2182ab1107a33840861fcb7ef09938688311ef8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Tue, 3 Dec 2024 10:08:12 -0600 Subject: [PATCH] fix: Exclude `information_schema` and `pg_catalog` from discovery --- tap_postgres/tap.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tap_postgres/tap.py b/tap_postgres/tap.py index 0e1e48f..9cef0d3 100644 --- a/tap_postgres/tap.py +++ b/tap_postgres/tap.py @@ -42,6 +42,8 @@ class TapPostgres(SQLTap): name = "tap-postgres" default_stream_class = PostgresStream + exclude_schemas = ("information_schema", "pg_catalog") + def __init__( self, *args,