Skip to content

Commit

Permalink
fix: Exclude information_schema and pg_catalog from discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Dec 3, 2024
1 parent d3ed6ca commit e2182ab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tap_postgres/tap.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ class TapPostgres(SQLTap):
name = "tap-postgres"
default_stream_class = PostgresStream

exclude_schemas = ("information_schema", "pg_catalog")

def __init__(
self,
*args,
Expand Down

0 comments on commit e2182ab

Please sign in to comment.