I tend to find answers before I need to post a question here, but today I can't seem to find out what is wrong.
We're using Doctrine 2.1.2 in a Symfony 2 app, and in a repository we have two methods that use almost the same query. The only difference between method A and method B is that there is a condition added to a JOIN that is common to both queries.
The problem is that Doctrine seems to use the same result cache for both queries. When we call method A, method B uses the cache from A, and the other way around.
I have been using expireResultCache(true) and useResultCache(false), to no avail.
Here's what the queries look like:
-- method A
SELECT DISTINCT a, b, c FROM MyBundle:ObjectA a INDEX BY a.id
LEFT JOIN a.fkObjectB b
LEFT JOIN a.fkObjectC c
-- method B
SELECT DISTINCT a, b, c FROM MyBundle:ObjectA a INDEX BY a.id
LEFT JOIN a.fkObjectB b WITH b.some_field IS NULL
LEFT JOIN a.fkObjectC c
When I use getSQL(), I see that they result in different queries as expected. The generated queries, when run independantly in database, do generate different results.
This leads me to believe that it may be an annoying result cache bug, where Doctrine does not cache the conditions for JOINs, but only the table names.
Is this a bug, or is there something I can do?
EDIT Still happening in Doctrine 2.1.6.