mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-2234: WHERE <<custom function>> IS NULL ... doesn't work #2810
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @doctrinebot on GitHub (Jan 11, 2013).
Jira issue originally created by user david_mattei:
I want to run this query :
SELECT ifnull(a.field1, a.field1) as name FROM table a WHERE ifnull(a.field1, a.field1) IS NULL
But I get an doctrine exception :
Doctrine\ORM\Query\QueryException' with message '[Syntax Error] line 0, col 518: Error: Expected Doctrine\ORM\Query\Lexer::T_IS, got '('' in /library/Doctrine/ORM/Query/QueryException.php:52
If I don't use the IS NULL in my where clause it is working perfectly.
I think this issue is related to :
http://www.doctrine-project.org/jira/browse/DDC-1472
@doctrinebot commented on GitHub (Jan 20, 2013):
Issue was closed with resolution "Fixed"