HHH-3730 Compare both ids in isModified instead of an object and an id
This commit is contained in:
parent
3ad914d73f
commit
1a10937ae9
|
@ -227,8 +227,9 @@ public class ManyToOneType extends EntityType {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
// the ids are fully resolved, so compare them with isDirty(), not isModified()
|
// the ids are fully resolved, so compare them with isDirty(), not isModified()
|
||||||
return getIdentifierOrUniqueKeyType( session.getFactory() )
|
Object oldid = getIdentifier( old, session );
|
||||||
.isDirty( old, getIdentifier( current, session ), session );
|
Object newid = getIdentifier( current, session );
|
||||||
|
return getIdentifierOrUniqueKeyType( session.getFactory() ).isDirty( oldid, newid, session );
|
||||||
}
|
}
|
||||||
|
|
||||||
public Serializable disassemble(
|
public Serializable disassemble(
|
||||||
|
|
Loading…
Reference in New Issue