dylan_just
07/29/2024, 6:39 AMReuben (Matatika)
07/29/2024, 9:47 AMmeltano select
to deselect the sensitive fields:
meltano select tap-postgres --exclude my_table.my_sensitive_field
meltano select tap-postgres --all
which will add the following your your `meltano.yml`:
select:
- '!my_table.my_sensitive_field.*'
- '*.*'
https://docs.meltano.com/concepts/plugins#select-extradylan_just
07/29/2024, 9:41 PM