[PR #555] Failing test case for iterable ObjectHydrator #8370

Closed
opened 2026-01-22 15:59:35 +01:00 by admin · 0 comments
Owner

Original Pull Request: https://github.com/doctrine/orm/pull/555

State: closed
Merged: No


Here's the deal, whether you're using ObjectHydrator::iterate() on query with scalars, on each consequent iteration scalars go into advanced subarray. In terms of failing test case, we're getting:

- iteration #1
  array(1) {
    [0]=> array(2) {
      ["id"]=> string(1) "1"
      ["name"]=> string(6) "romanb"
    }
  }
- iteration #2
  array(1) {
    [1]=> array(2) {
      ["id"]=> string(1) "2"
      ["name"]=> string(5) "jwage"
    }
  }
- iteration #3
  array(1) {
    [2]=> array(2) {
      ["id"]=> string(1) "3"
      ["name"]=> string(7) "everzet"
    }
  }

Where in reality we expect:

- iteration #1
  array(1) {
    [0]=> array(2) {
      ["id"]=> string(1) "1"
      ["name"]=> string(6) "romanb"
    }
  }
- iteration #2
  array(1) {
    [0]=> array(2) {
      ["id"]=> string(1) "2"
      ["name"]=> string(5) "jwage"
    }
  }
- iteration #3
  array(1) {
    [0]=> array(2) {
      ["id"]=> string(1) "3"
      ["name"]=> string(7) "everzet"
    }
  }
**Original Pull Request:** https://github.com/doctrine/orm/pull/555 **State:** closed **Merged:** No --- Here's the deal, whether you're using `ObjectHydrator::iterate()` on query with scalars, on each consequent iteration scalars go into advanced subarray. In terms of failing test case, we're getting: ``` - iteration #1 array(1) { [0]=> array(2) { ["id"]=> string(1) "1" ["name"]=> string(6) "romanb" } } - iteration #2 array(1) { [1]=> array(2) { ["id"]=> string(1) "2" ["name"]=> string(5) "jwage" } } - iteration #3 array(1) { [2]=> array(2) { ["id"]=> string(1) "3" ["name"]=> string(7) "everzet" } } ``` Where in reality we expect: ``` - iteration #1 array(1) { [0]=> array(2) { ["id"]=> string(1) "1" ["name"]=> string(6) "romanb" } } - iteration #2 array(1) { [0]=> array(2) { ["id"]=> string(1) "2" ["name"]=> string(5) "jwage" } } - iteration #3 array(1) { [0]=> array(2) { ["id"]=> string(1) "3" ["name"]=> string(7) "everzet" } } ```
admin added the pull-request label 2026-01-22 15:59:35 +01:00
admin closed this issue 2026-01-22 15:59:36 +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#8370