Details
Description
I have a problem making a DQL query
SELECT c.id, c.name
FROM BrandBundle:Brand c
WHERE UPPER(c.name) IN (:values)
:values is an array of possible names of brands.
The error shown is
[Syntax Error] line 0, col 109: Error: Expected Doctrine\ORM\Query\Lexer::T_IN, got '('
This is already fixed in master for a long time and should be available in 2.3, since it requires major changes in DQL.