@OrderColumn not updated on @OneToMany cascade

Description

See 's comments and attachment on HHH-5732.

1. cascadeSave of child when parent is saved and parent is not yet in the database: works
2. cascadeSave of child when parent is saved and parent is loaded from the database: fails, no index is inserted
3. save of child (as owning entity): fails, no index is inserted

Attachments

1

Activity

Show:

Marc SchipperheynOctober 17, 2014 at 9:07 AM

Why do you have positioner explicitly defined?

Rudi WijayaOctober 17, 2014 at 8:22 AM

The absolute fix in my case is to mark the positioner field as @Column(insertable=false, updatable=false)

Rudi WijayaOctober 17, 2014 at 8:19 AM

It seems that after step #3 : UPDATE CartLine set positioner=? for each CartLine in Cart, setting positioner from 0 to number of children

the positioner field in the CartLine objects are not updated by Hibernate, which may contribute to unexpected behavior when the entity is later re-merged.

Rudi WijayaOctober 17, 2014 at 7:53 AM

During proper behavior, the chronology is:

1. INSERT INTO CartLine (child) with positioner=0
2. UPDATE Cart (parent)
3. UPDATE CartLine set positioner=? for each CartLine in Cart, setting positioner from 0 to number of children

During improper behavior, the chronology is:

1. INSERT INTO CartLine (child) with positioner=0
2. UPDATE Cart (parent)
3. UPDATE CartLine set positioner=? for each CartLine in Cart, setting positioner from 0 to number of children
4. UPDATE CartLine for each CartLine in Cart, updating all fields, and re-setting positioner to improper value

Rudi WijayaOctober 17, 2014 at 7:16 AM

In some cases, may be related to HHH-9106.

Fixed

Details

Assignee

Reporter

Fix versions

Priority

Created March 18, 2013 at 3:12 PM
Updated October 17, 2014 at 9:07 AM
Resolved May 22, 2013 at 5:06 PM