mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-3062: [GH-997] [FIX] Allow to use ManyToMany with all operators #3801
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 (Mar 31, 2014).
Originally assigned to: @Ocramius on GitHub.
Jira issue originally created by user @doctrinebot:
This issue is created automatically through a Github pull request on behalf of bakura10:
Url: https://github.com/doctrine/doctrine2/pull/997
Message:
Hi,
ping @guillhermoblanco : I think this may be blocking for 2.5
I introduced not so long ago support for ManyToMany for Criteria. However, I realized my implementation was really incomplete, because I hard-coded the "=" operator (https://github.com/doctrine/doctrine2/pull/885/files#diff-982b7374bbe9d5f4b6b71f4869a446eaR575). This means that it fails in a lot of cases when you use something different than "eq" for Criteria.
This PR fixes that, however it's a bit hacky. The SqlExpressionVisitor was made by type hinting for a BasicEntityPersister, preventing us from using us for a collection persister. Therefore I added a new interface to keep BC.
There is also a lot of code duplication (the whole "getSelectConditionSQL" was copied from the BasicEntityPersister), but without trait or BC, I have no idea about how to solve it.
All tests pass, test were added for other operators.
@doctrinebot commented on GitHub (Jan 13, 2015):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-997] was assigned:
https://github.com/doctrine/doctrine2/pull/997
@doctrinebot commented on GitHub (Jan 13, 2015):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-997] was unassigned:
https://github.com/doctrine/doctrine2/pull/997
@doctrinebot commented on GitHub (Jan 24, 2015):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-997] was labeled:
https://github.com/doctrine/doctrine2/pull/997
@doctrinebot commented on GitHub (Jan 24, 2015):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-997] was labeled:
https://github.com/doctrine/doctrine2/pull/997
@doctrinebot commented on GitHub (Jan 24, 2015):
Comment created by @doctrinebot:
A related Github Pull-Request [GH-997] was unlabeled:
https://github.com/doctrine/doctrine2/pull/997
@doctrinebot commented on GitHub (Mar 25, 2015):
Issue was closed with resolution "Incomplete"