mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-339: Parser incorrectly assumes arithmetic expression when finding lower(something) #419
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 (Feb 14, 2010).
Jira issue originally created by user russ:
$dql = "SELECT f FROM foo f WHERE f.something LIKE :str
works ok, but cannot be converted to a case insensitive search
$dql = "SELECT f FROM foo f WHERE lower(f.something) LIKE :str
Fails with syntax error (Expected =, <, <=, etc) got 'LIKE'
@doctrinebot commented on GitHub (Feb 14, 2010):
@doctrinebot commented on GitHub (Feb 15, 2010):
Comment created by @beberlei:
Reproduced with CMS Model Set:
@doctrinebot commented on GitHub (Feb 20, 2010):
Comment created by romanb:
Should be fixed in trunk.
@doctrinebot commented on GitHub (Feb 20, 2010):
Issue was closed with resolution "Fixed"