Follow up question (related to above question). I’...
# plugins-general
t
Follow up question (related to above question). I’m looking to pull in just specific columns from a
tap-postgres
extractor. When I use this environment variable:
Copy code
export TAP_POSTGRES__SELECT='["staging-emp.email", "staging-emp.emp_id"]'
and then check selected columns with
meltano select tap-postgres --list
, the extractor correctly shows just these two fields I want extracted. But then when I run a
meltano elt tap-postgres target-csv
, for example, it still pulls all of the fields in that table. Is there a way to tell Meltano that I only want to select certain fields from the table?