[PR #152] [CLOSED] Ddc 1385 #7782

Open
opened 2026-01-22 15:56:47 +01:00 by admin · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/doctrine/orm/pull/152
Author: @ehabinl
Created: 10/16/2011
Status: Closed

Base: masterHead: DDC-1385


📝 Commits (6)

  • cb0e5db DDC-1385 - Fixed Mixed result hydration using INDEX BY to work on the top-level indexes, not some weird result. This is a BC break to those that actually use this crazy logic, sorry for that :-)
  • 2730f64 DDC-1385 - Refactor ObjectHydrator
  • ee924ff DDC-1385 - Fix scalar handling for array hydrator
  • 8466060 DDC-1385 - Add INDEX BY scalar variables on the top-level
  • a316c63 Add the ability of cache grouping, this will group several result set s into a group, so that we can do a bulk cache flushing
  • b2921c6 Auto Tag Insersion

📊 Changes

7 files changed (+283 additions, -67 deletions)

View changed files

📝 lib/Doctrine/ORM/AbstractQuery.php (+50 -0)
📝 lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php (+26 -20)
📝 lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php (+27 -22)
📝 lib/Doctrine/ORM/Query/ResultSetMapping.php (+35 -1)
📝 lib/Doctrine/ORM/Query/SqlWalker.php (+20 -5)
📝 tests/Doctrine/Tests/ORM/Hydration/ArrayHydratorTest.php (+47 -8)
📝 tests/Doctrine/Tests/ORM/Hydration/ObjectHydratorTest.php (+78 -11)

📄 Description

I added a new feature for cache grouping, so please can you merge to the master branch


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/doctrine/orm/pull/152 **Author:** [@ehabinl](https://github.com/ehabinl) **Created:** 10/16/2011 **Status:** ❌ Closed **Base:** `master` ← **Head:** `DDC-1385` --- ### 📝 Commits (6) - [`cb0e5db`](https://github.com/doctrine/orm/commit/cb0e5dbff32711093e4f7055ab3d9daaf036d401) DDC-1385 - Fixed Mixed result hydration using INDEX BY to work on the top-level indexes, not some weird result. This is a BC break to those that actually use this crazy logic, sorry for that :-) - [`2730f64`](https://github.com/doctrine/orm/commit/2730f64d90cb0ec97fe35cea950d530722bbafbc) DDC-1385 - Refactor ObjectHydrator - [`ee924ff`](https://github.com/doctrine/orm/commit/ee924ffaba4dc8b666dc2b6070ce1b4b5f7f1308) DDC-1385 - Fix scalar handling for array hydrator - [`8466060`](https://github.com/doctrine/orm/commit/8466060797f0f9c85dd8f9d6b36906c4cbf2e8f7) DDC-1385 - Add INDEX BY scalar variables on the top-level - [`a316c63`](https://github.com/doctrine/orm/commit/a316c632476412b85e8804890594054fbf122903) Add the ability of cache grouping, this will group several result set s into a group, so that we can do a bulk cache flushing - [`b2921c6`](https://github.com/doctrine/orm/commit/b2921c68d8423edb68ec65daaa16e8986a1b7ef7) Auto Tag Insersion ### 📊 Changes **7 files changed** (+283 additions, -67 deletions) <details> <summary>View changed files</summary> 📝 `lib/Doctrine/ORM/AbstractQuery.php` (+50 -0) 📝 `lib/Doctrine/ORM/Internal/Hydration/ArrayHydrator.php` (+26 -20) 📝 `lib/Doctrine/ORM/Internal/Hydration/ObjectHydrator.php` (+27 -22) 📝 `lib/Doctrine/ORM/Query/ResultSetMapping.php` (+35 -1) 📝 `lib/Doctrine/ORM/Query/SqlWalker.php` (+20 -5) 📝 `tests/Doctrine/Tests/ORM/Hydration/ArrayHydratorTest.php` (+47 -8) 📝 `tests/Doctrine/Tests/ORM/Hydration/ObjectHydratorTest.php` (+78 -11) </details> ### 📄 Description I added a new feature for cache grouping, so please can you merge to the master branch --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
admin added the pull-request label 2026-01-22 15:56:47 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: doctrine/archived-orm#7782