mirror of
https://github.com/doctrine/orm.git
synced 2026-03-24 06:52:09 +01:00
DDC-3221: Invalid binding for primary key of entity relation #3988
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?
Originally created by @doctrinebot on GitHub (Jul 21, 2014).
Originally assigned to: @ostrolucky on GitHub.
Jira issue originally created by user to0n1:
Hello.
We use doctrine2 ORM with doctrine/doctrine-bundle in our symfony2 based project. We developed functionality which is similar to some kind of import process.
And we have an issue that appears from time to time in different points during the import.
Issue is following:
Lets imagine we have 3 entities Account, Contact, Contact Address.
Account has many to one relation on contact and contact has one to many relation on contact address.
Our import creates all 3 entities and persist only Account, contact and address are persisted via cascade persist.
We have writer that contains following code
So we clear EntityManager for each batch in order to avoid high memory consumption.
Import fails during different entities insert, but errors are very similar.
Example of error is
{quote}
After debugging I found that problem is in BasicEntityPersister#prepareUpdateData
$uow->getEntityIdentifier($newVal);returns oid that is real one, but UOW contains not the same ID as in $newVal entity. It seems like spl_object_hash duplicates oid.
Any help is appreciated.
Thanks in advance.
@ostrolucky commented on GitHub (Aug 7, 2018):
spl_object_has has been replaced with spl_object_id in doctrine 3.x, so this should no longer happen