You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I want to restrict data retrieved from the org and try to create where clause with a "not in ()" statement and one more statement. The SFDMU adds additional "not" in the next part of the query and then throw "invalid query error".
To Reproduce
Create a query with where clause containing a "not in ()" phrase and then another phrase after it, .e.g where industry not in ('Electronics') and industry != null
Expected behavior
The where clause of query should behave the same way as it behaves in Developer Console and not get "not" operator in random places.
export.json { "objects": [ { "operation": "Upsert", "externalId": "Name", "query": "select id, name, industry, type from account where industry not in ('Electronics') and industry != null", "master": true } ] }
Describe the bug
I want to restrict data retrieved from the org and try to create where clause with a "not in ()" statement and one more statement. The SFDMU adds additional "not" in the next part of the query and then throw "invalid query error".
To Reproduce
Create a query with where clause containing a "not in ()" phrase and then another phrase after it, .e.g
where industry not in ('Electronics') and industry != null
Expected behavior
The where clause of query should behave the same way as it behaves in Developer Console and not get "not" operator in random places.
export.json
{ "objects": [ { "operation": "Upsert", "externalId": "Name", "query": "select id, name, industry, type from account where industry not in ('Electronics') and industry != null", "master": true } ] }
Log file
2024-11-29__18_37_50.log
The text was updated successfully, but these errors were encountered: