mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-2787: COALESCE() doesn't work with NOT IN() #3486
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 (Nov 9, 2013).
Originally assigned to: @beberlei on GitHub.
Jira issue originally created by user flack:
When I try running the following query:
I get
When I run the query as straight SQL against the database, it works as expected. Is this something that can be fixed in Doctrine or is this syntax unsupported?
@astepin commented on GitHub (Jun 6, 2017):
This bug can be closed. It is not an issue.
I assume that "c.up" is a reference to another table. To solve this you just have to wrap "c.up" with the IDENTITY() function like this:
@lcobucci commented on GitHub (Jun 23, 2017):
@astepin thanks! Closing.