You need to sign in to do that
Don't have an account?
Data Loader bug with semi joins
I wasn't sure where to post this since it's a bug in the Data Loader that involves semi-joins and parent/child subqueries, and I will log a case with it too. Anyone else seen this? I'm trying to put together a very simple semi-join query that works just fine against the API in Eclipse, but fails with an "invalid query" error in the Data Loader.
select Id, Name, (select Id from Tasks) from Opportunity where Id in (select OpportunityId from OpportunityLineItem where Description = 'test')
If I remove the child sub-query it works fine in Data Loader, and the full query with the child query works fine in Eclipse. Looks like a bug in Data Loader on query validation.
Mark