DDC-736: Nasty ordering issue with fetch-joins #905

Open
opened 2026-01-22 12:55:00 +01:00 by admin · 0 comments
Owner

Originally created by @doctrinebot on GitHub (Aug 7, 2010).

Originally assigned to: @beberlei on GitHub.

Jira issue originally created by user romanb:

Will not work correctly:

select c, ca from Cart ca join ca.customer c

Works correctly:

select ca, c from Cart ca join ca.customer c

In the first case the ordering of the DQL aliases causes associations to be skipped during hydration.

Originally created by @doctrinebot on GitHub (Aug 7, 2010). Originally assigned to: @beberlei on GitHub. Jira issue originally created by user romanb: Will not work correctly: select c, ca from Cart ca join ca.customer c Works correctly: select ca, c from Cart ca join ca.customer c In the first case the ordering of the DQL aliases causes associations to be skipped during hydration.
admin added the Bug label 2026-01-22 12:55:00 +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#905