mirror of
https://github.com/doctrine/orm.git
synced 2026-03-23 22:42:18 +01:00
[PR #9429] Add failing test for failing to update child-parent relation when the child has been prefetched in QB #11611
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?
Original Pull Request: https://github.com/doctrine/orm/pull/9429
State: closed
Merged: No
I have discovered this test case that reproduces bug when there's a child relation indexed
and then join in qb
->leftJoin('p.children', 'c')then the relationship is not getting updated.
$child->setParent(null)produces no change.