I’m using `tap-postgres` and want to use `LOG_BASE...
# plugins-general
d
I’m using
tap-postgres
and want to use
LOG_BASED
replication. The source schema has one view that I want to exclude, but when I set
meltano config my-postgres-db set _select '["public.*","!my-view-I-want-to-exclude"]'
, it ends up excluding everything when I
--list --all
and when I run
test
I get
Copy code
Plugin configuration is invalid
No RECORD message received
is this related to this issue? https://gitlab.com/meltano/meltano/-/issues/2475 Is there a workaround? UPDATE: Solved by using
'["public-*","!public-my-view-I-want-to-exclude"]'
instead of dot notation, which doesn’t seem to work.