mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
DDC-2798: [GH-849] Error with Same Field, Multiple Values, Criteria and QueryBuilder #3501
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 18, 2013).
Originally assigned to: @guilhermeblanco on GitHub.
Jira issue originally created by user @doctrinebot:
This issue is created automatically through a Github pull request on behalf of bsahlhof:
Url: https://github.com/doctrine/doctrine2/pull/849
Message:
I just posted another quick patch for this, but after reviewing some of the tests, I realized I needed to change it slightly.
The bug appeared when using same field for 2 different expression values within Criteria, then adding to QueryBuilder.
This makes sure the parameters are unique, avoiding the issue.
Example of issue:
Criteria of Field1 = Value1 OR (Field1 = Value2 AND field2 = true) passed to QueryBuilder
In this case, the parameter :Field1 was duplicated, throwing an error on evaluation of DQL.
@doctrinebot commented on GitHub (Nov 26, 2013):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-849] was closed:
https://github.com/doctrine/doctrine2/pull/849
@doctrinebot commented on GitHub (Nov 26, 2013):
Comment created by @ocramius:
Merged:
0e3c57dbd3@doctrinebot commented on GitHub (Nov 26, 2013):
Issue was closed with resolution "Fixed"