orm icon indicating copy to clipboard operation
orm copied to clipboard

oneToMany orphanRemoval with unique - constraint violation

Open akomm opened this issue 8 years ago • 31 comments

I currently do not have time for the test, also because this blocks me: #6738. I try to add one asap.

Issue is the following:

Preconditions:

  • You have an OneToMany with orphanRemoval set from the one-side.
  • On the many-side you have a unique constraint

You do the following in a single transaction/flush:

  1. Remove some entities from the many-side
  2. Create new entities on the many-side

When the column value (unique constraint) on the removed entities (1) equals the column value (unique constraint) on the created entities (2) a constraint violation is raised.

Reason: The created entities (2) are INSERTed before the removed entities (1) are DELETEd.

Found a fixed, similar issue, just ManyToMany: #2310

akomm avatar Oct 16 '17 09:10 akomm

@akomm thanks for reporting the issue, we do need a test though (we're also short on time). Send us something when you're available and we discuss on the PR.

lcobucci avatar Oct 29 '17 22:10 lcobucci

I resolved the #6738 issue but could not make a reproduction "quick" and worked around it removing the unique constraint temporary relying on code as long as the app is not in prod. Want to return to the reproduction test when rest is done, so I can enable the constraint again.

akomm avatar Nov 02 '17 18:11 akomm

Hi, We're facing the same problem but we won't just remove the constraint ;-) Anyone working on this topic?

cc @nio-hevea @Myloth

julienb-allopneus avatar Nov 17 '17 14:11 julienb-allopneus

@julienb-allopneus could you please send us a failing test case that reproduces that behaviour? It would help us a lot to identify and fix the issue you're describing.

You can find examples on https://github.com/doctrine/doctrine2/tree/388afb46d0cb3ed0c51332e8df0de9e942c2690b/tests/Doctrine/Tests/ORM/Functional/Ticket

lcobucci avatar Nov 19 '17 14:11 lcobucci

Hi @lcobucci , I'll work on this today, and keep you informed as soon as I can.

julienb-allopneus avatar Nov 20 '17 09:11 julienb-allopneus

Hi guys @lcobucci & @akomm ,

I have written a test in the following PR https://github.com/doctrine/doctrine2/pull/6838 , please have a look and tell me what's next :-) FYI, I have no experience in doctrine contribution and doctrine internals .

Thanks,

Julien.

cc @nio-hevea @Myloth

julienb-allopneus avatar Nov 21 '17 10:11 julienb-allopneus

Hi all,

Any news/advice on the test I wrote? @lcobucci , is it ok for you?

Thanks,

Julien.

julienb-allopneus avatar Nov 29 '17 08:11 julienb-allopneus

Hi @lcobucci and @akomm ,

Any news on this issue? I guess that we may remove the "Missing tests" label and requalify the issue.

Thanks,

Julien.

julienb-allopneus avatar Jan 08 '18 08:01 julienb-allopneus

I'm having this same issue on a OnToOne relationship as well (no matter which the owning side it).

Is this related to this issue, or is there some other documentation someone can point me at?

toby-griffiths avatar Mar 06 '18 17:03 toby-griffiths

@Toby we'd need a test case to verify that.

On 6 Mar 2018 18:38, "Toby Griffiths" [email protected] wrote:

I'm having this same issue on a OnToOne relationship as well (no matter which the owning side it).

Is this related to this issue, or is there some other documentation someone can point me at?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/doctrine/doctrine2/issues/6776#issuecomment-370864160, or mute the thread https://github.com/notifications/unsubscribe-auth/AAJakO86kAhc5wRGz95LNkqfQUwTU-acks5tbsl4gaJpZM4P6XxY .

Ocramius avatar Mar 06 '18 18:03 Ocramius

@Ocramius @toby-griffiths we do have a test case in #6838 - it needs to be updated, sure

lcobucci avatar Mar 07 '18 04:03 lcobucci

@Ocramius Should I add my case details here, or raise a new ticket?

toby-griffiths avatar Mar 07 '18 07:03 toby-griffiths

Or Raise a new Test Case, as per @lcobucci 's comment?

toby-griffiths avatar Mar 07 '18 07:03 toby-griffiths

(Thanks for the prompt reply, btw)

toby-griffiths avatar Mar 07 '18 07:03 toby-griffiths

@lcobucci / @Ocramius is it possible to add a test case file to that existing Test Case PR (#6838)? Or should I raise a separate PR to include the OneToOne test case?

toby-griffiths avatar Mar 12 '18 09:03 toby-griffiths

@toby-griffiths yeah, you'd need to send a PR against that fork

Ocramius avatar Mar 12 '18 09:03 Ocramius

OK. Will do when I can find a moment.

toby-griffiths avatar Mar 12 '18 10:03 toby-griffiths

Any updates on this issue?

artem328 avatar Oct 20 '18 11:10 artem328

Please advise if this PR needs modifying (& how) as I was unable to submit the PR to the julienb-allopneus/doctrine2 fork.

toby-griffiths avatar Oct 31 '18 10:10 toby-griffiths

Is this still being worked on? I am a bit lost about the status here, but this bug is quiet annoying. Please tell me if there is anything I can do to help.

elkangaroo avatar Mar 06 '19 11:03 elkangaroo

Failing tests were added and a bugfix PR is needed to make the tests work.

SenseException avatar Mar 08 '19 23:03 SenseException

I'm also facing this bug and it's quite annoying. I took a look at doctrine's internals but could not find an easy fix for this bug. Doctrine always execute INSERTs before DELETEs. Any ideas on how to fix this ?

vincentbab avatar Sep 02 '19 11:09 vincentbab

@vincentbab seems like they don't want to fix that. I am olso faced with that issue and trying to find workaround

sannek8552 avatar Sep 11 '19 12:09 sannek8552

@sannek8552 can't blame them, they do it in their free time, there is no paid core team supported by some company AFAIK, like in many other OOS projects.

akomm avatar Sep 12 '19 13:09 akomm

I'm also facing with this :(

egor-dev avatar Oct 17 '19 07:10 egor-dev

This is a long standing bug that should have an even older ticket (I remember it was open during 2.0 beta already). The problem is that we couldn't re-order insert after deletes for some other reason that I forgot at the moment.

beberlei avatar Feb 15 '20 15:02 beberlei

I had a similar use case. I think it's better to handle it manually, until Doctrine is able to handle this more gracefully.

This method prevents deletes/inserts when an update will do the job also.

  1. Loop through all existing records, find matches and update them
  2. Remove all unmatched records
  3. Loop through all updates and create records for the ones that were not matched.

Example dealing with currencies:

            foreach ($currency->getExchangeRates() as $exchangeRate) {
                foreach ($data['exchangeRates'] as $exchangeRateData) {
                    if ($exchangeRate->getCurrencyTo()->getCode() == $exchangeRateData['currencyTo']) {
                        $exchangeRate->setRate($exchangeRateData['rate']);
                        continue 2;
                    }
                }

                $currency->removeExchangeRate($exchangeRate);
                $this->entityManager->remove($exchangeRate);
            }

            foreach ($data['exchangeRates'] as $exchangeRateData) {
                foreach ($currency->getExchangeRates() as $exchangeRate) {
                    if ($exchangeRate->getCurrencyTo()->getCode() == $exchangeRateData['currencyTo']) {
                        continue 2;
                    }
                }

                $exchangeRate = new CurrencyExchangeRate();
                $exchangeRate->setCurrencyTo($indexedCurrencies[$exchangeRateData['currencyTo']]);
                $exchangeRate->setRate($exchangeRateData['rate']);
                $currency->addExchangeRate($exchangeRate);
            }

kirkmadera avatar Oct 12 '21 20:10 kirkmadera

Since nobody posted it, here you go. This issue is related to https://github.com/doctrine/orm/issues/5109 and you should be aware of the long discussion there.

Nek- avatar Oct 15 '21 17:10 Nek-

It seems that having the DELETEs before the INSERTs would be a fix for this case. But, #10809 adds two examples that show why this cannot easily be done, at least not in general.

mpdude avatar Jun 28 '23 14:06 mpdude

I have found only one fix for this extremely annoying issue that took me many tries and several hours to work around, and that is, that I have to manually filter out removed orphans BEFORE adding new ones or updating existing ones, AND I have to flush the removed ones too:

private function setChildren(EntityManager $em, ParentEntity $parent, array $submittedChildren): void
{
    $existingChildren = $parent->getChildren();

    // region Workaround for 7 year old Doctrine bug.
    // ChildEntity has a unique index.
    // If a ChildEntity is deleted (i.e. ID not in $submittedChildren),
    // and a new one is added with the same values from the unique index columns,
    // Doctrine first tries to add the new one - and catches a UniqueConstraintViolationException,
    // never even reaching the orphanRemoval part.
    // Thus, we are forced to manually remove the orphans ourselves...
    $existingChildIds = $existingChildren->getKeys(); // indexBy="id"
    $updatedChildIds = array_filter(array_column($submittedChildren, 'id'));
    $deletedChildIds = array_diff($existingChildIds, $updatedChildIds);

    foreach ($deletedChildIds as $deletedId) {
        $em->remove($existingChildren[$deletedId]);
    }

    $em->flush(); // Doesn't work without this.
    // endregion

    foreach ($submittedChildren as ['id' => $childId, 'fieldA' => $fieldA, 'fieldB' => $fieldB]) {
        $child = $existingChildren[$childId] ?? new ChildEntity();
        $child->setFieldA($fieldA);
        $child->setFieldB($fieldB);

        if (!$child->getId()) {
            $parent->addChild($child);
        }
    }
}

Personally I would suggest adding a flag to the OneToMany relation, something like deleteBeforeInsertion=true. I presume for those to whom this situation applies, many would want exactly this, and those that wouldn't most likely require a completely custom solution anyway.

jurchiks avatar Nov 21 '24 00:11 jurchiks