mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #643] [CLOSED] DDC-2390: Remove Query dependency in SqlWalker and Parser #8500
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/643
Author: @beberlei
Created: 4/4/2013
Status: ❌ Closed
Base:
master← Head:DDC-2390📝 Commits (2)
0960711[DDC-2390] Introduce MetadataBag and delegate all calls from AbstractQuery and Query.a9639ae[DDC-2390] Remove Query dependency from SqlWalker (and all TreeWalkers) and Parser📊 Changes
12 files changed (+303 additions, -143 deletions)
View changed files
📝
lib/Doctrine/ORM/AbstractQuery.php(+23 -31)📝
lib/Doctrine/ORM/Query.php(+10 -27)➕
lib/Doctrine/ORM/Query/MetadataBag.php(+166 -0)📝
lib/Doctrine/ORM/Query/Parser.php(+15 -8)📝
lib/Doctrine/ORM/Query/SqlWalker.php(+3 -3)📝
lib/Doctrine/ORM/Query/TreeWalker.php(+1 -1)📝
lib/Doctrine/ORM/Query/TreeWalkerAdapter.php(+12 -1)📝
lib/Doctrine/ORM/Query/TreeWalkerChain.php(+59 -58)📝
lib/Doctrine/ORM/Tools/Pagination/CountOutputWalker.php(+3 -3)📝
lib/Doctrine/ORM/Tools/Pagination/LimitSubqueryOutputWalker.php(+5 -4)📝
tests/Doctrine/Tests/ORM/Query/CustomTreeWalkersJoinTest.php(+2 -2)📝
tests/Doctrine/Tests/ORM/Query/LanguageRecognitionTest.php(+4 -5)📄 Description
To prevent future problems with illegal Query parameter access and also to decouple the namespaces by removing bidirectional dependency.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.