mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #224] [MERGED] DDC-551 #7883
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?
📋 Pull Request Information
Original PR: https://github.com/doctrine/orm/pull/224
Author: @beberlei
Created: 12/18/2011
Status: ✅ Merged
Merged: 12/18/2011
Merged by: @beberlei
Base:
master← Head:DDC-551📝 Commits (10+)
a85902b[DDC-551] Initial code for filter functionalityb867744[DDC-551] Added tests for SQLFilter functionality + small fixes277fc75[DDC-551] Added tests for SQLFilterd1908f7[DDC-551] Keep filter parameters and enabled filters sorted for hashing4cf63a4[DDC-551] Fixed the escaping of filter parameters4266ab7[DDC-551] Added __toString() method to SQLFilterafd7a54[DDC-551] Removed 'use ..DBAL..\Type', causing full testsuite to fail6163d9d[DDC-551] Added enabled filters to Query hashe3dcfa8[DDC-551] Added filters to query hash + tests for hash6cf7bdcMerge branch 'master' into DDC-551📊 Changes
13 files changed (+1350 additions, -22 deletions)
View changed files
📝
lib/Doctrine/ORM/Configuration.php(+27 -2)📝
lib/Doctrine/ORM/EntityManager.php(+44 -1)📝
lib/Doctrine/ORM/Persisters/BasicEntityPersister.php(+49 -4)📝
lib/Doctrine/ORM/Persisters/JoinedSubclassPersister.php(+11 -0)📝
lib/Doctrine/ORM/Persisters/ManyToManyPersister.php(+83 -8)📝
lib/Doctrine/ORM/Persisters/OneToManyPersister.php(+9 -4)📝
lib/Doctrine/ORM/Persisters/SingleTablePersister.php(+11 -0)📝
lib/Doctrine/ORM/Query.php(+6 -2)➕
lib/Doctrine/ORM/Query/Filter/SQLFilter.php(+115 -0)➕
lib/Doctrine/ORM/Query/FilterCollection.php(+198 -0)📝
lib/Doctrine/ORM/Query/SqlWalker.php(+76 -0)➕
tests/Doctrine/Tests/ORM/Functional/SQLFilterTest.php(+720 -0)📝
tests/Doctrine/Tests/ORM/Functional/Ticket/DDC633Test.php(+1 -1)📄 Description
Refactored DDC-551 branch and finished for merging.
One little outstanding Todo @asm89 will finish up during beta.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.