HHH-18712 Warning about attempts to update an immutable entity for normal (not immutable) entity
This commit is contained in:
parent
8b5bc445c8
commit
93af5f2fb1
|
@ -223,4 +223,9 @@ public abstract class MockEntityPersister implements EntityPersister, Joinable,
|
|||
public Type getDiscriminatorType() {
|
||||
return factory.getTypeConfiguration().getBasicTypeForJavaType(String.class);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isMutable() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue