matt_cooley
10/15/2021, 6:18 PMexclude
clause doesn’t seem to be working for tap-salesforce
. For example:
select:
- Task.*
exclude:
- Task.description
Doesn’t exclude Task.description
. Interestingly, the “exclusion pattern” in the select
clause does work:
select:
- Task.*
- '!Task.Description
Does work…kinda. It just nulls
the column, instead of excluding it. Not sure if I’m missing something obvious or notaaronsteers
10/15/2021, 7:46 PMmatt_cooley
10/15/2021, 8:50 PMselect: !Task.Description
filters the records and exclude: Task.Description
filters the schema, but the tap I’m using doesn’t respect schema filters?aaronsteers
10/15/2021, 11:03 PMexclude
and select
in this context both are meltano-implementation that feed into the selection
feature in the catalog. If the tap doesn't filter the schema messages as part of that, there's not much we can do about it.aaronsteers
10/15/2021, 11:04 PMaaronsteers
10/15/2021, 11:05 PMmatt_cooley
10/16/2021, 10:56 PMselect: !Task.Description
works, it doesn’t EL the data (though it does add the column). exclude: Task.Description
doesn’t work at all. That’s why I was making that assumption.aaronsteers
10/18/2021, 11:25 PMaaronsteers
10/18/2021, 11:34 PM