Using `tap-salesforce`, am i missing something wit...
# singer-taps
a
Using
tap-salesforce
, am i missing something with the following select config that is intended to filter out any custom salesforce properties (those that end with
__c
) ?
Copy code
select:
    - Account.*
    - RecordType.*
    - Contact.*
    - Opportunity.*
    - '!*.*__c'
Ah, interesting.. this seems to work:
Copy code
select:
    - Account.*
    - RecordType.*
    - Contact.*
    - Opportunity.*
    - '!Account.*__c'
    - '!RecordType.*__c'
    - '!Contact.*__c'
    - '!Opportunity.*__c'
a
I'm not sure what would cause the first to not work.
cc @taylor and @pat_nadolny in case you've seen this before
And to confirm, @andrew_stewart, are you just not seeing those columns getting excluded or is there some other symptom(s) with
'!*.*__c'
?
a
It was excluding everything
I can go back and do some more deliberate testing tomorrow though and confirm the behavior
a
Yeah, that sounds like a bug if so.
a
hmm, couldn’t reproduce.. but it looks like
meltano --environment=foo select …
adds the selection rules to the indicated environment, and I was messing with a couple environments so probably had a selection rule elsewhere that was overriding the one I was staring at 🤷‍♂️
a
Thanks for letting us know. If you do see it come up again, definitely feel free to open an issue. Thanks!