mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #360] [MERGED] [DDC-1840] Implemented parameters as a collection. #8078
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/360
Author: @guilhermeblanco
Created: 5/28/2012
Status: ✅ Merged
Merged: 5/29/2012
Merged by: @guilhermeblanco
Base:
master← Head:DDC-1840📝 Commits (6)
1635e0a[DDC-1840] Implemented parameters as a collection.79ff1f1Optimized getParameter.d8e165dAdded 2.3 BC break information.b3e7493Made setParameters()/excute()/iterate() BC compatible.161ae31Adde more BC compatibility in setParameters.15f76c6Update UPGRADE_TO_2_3📊 Changes
14 files changed (+404 additions, -182 deletions)
View changed files
📝
UPGRADE_TO_2_3(+18 -0)📝
lib/Doctrine/ORM/AbstractQuery.php(+92 -91)📝
lib/Doctrine/ORM/NativeQuery.php(+18 -7)📝
lib/Doctrine/ORM/Query.php(+23 -14)📝
lib/Doctrine/ORM/Query/Exec/MultiTableUpdateExecutor.php(+15 -6)➕
lib/Doctrine/ORM/Query/Parameter.php(+101 -0)📝
lib/Doctrine/ORM/Query/SqlWalker.php(+3 -4)📝
lib/Doctrine/ORM/QueryBuilder.php(+25 -23)📝
tests/Doctrine/Tests/ORM/Functional/HydrationCacheTest.php(+7 -3)📝
tests/Doctrine/Tests/ORM/Functional/NativeQueryTest.php(+14 -6)📝
tests/Doctrine/Tests/ORM/Functional/QueryCacheTest.php(+4 -1)📝
tests/Doctrine/Tests/ORM/Functional/QueryTest.php(+30 -9)📝
tests/Doctrine/Tests/ORM/Query/QueryTest.php(+27 -10)📝
tests/Doctrine/Tests/ORM/QueryBuilderTest.php(+27 -8)📄 Description
Breaking down the changes per method:
execute
BEFORE:
AFTER:
setParameters
BEFORE:
AFTER:
getParameter
BEFORE:
AFTER:
Related changes:
BEFORE:
AFTER
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.