@OrderColumn not updated on @OneToMany cascade
Description
Attachments
follows up on
Activity

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.
Details
Assignee
Brett MeyerBrett MeyerReporter
Brett MeyerBrett MeyerFix versions
Priority
Major
Details
Details
Assignee

Reporter

See 's comments and attachment on HHH-5732.