HHH-16340 Avoid checking discriminator duplication when not insertable
This commit is contained in:
parent
1394659ff3
commit
0da73a27a5
|
@ -1103,7 +1103,9 @@ public abstract class PersistentClass implements AttributeContainer, Serializabl
|
||||||
//and checked later, so it needs to be excluded
|
//and checked later, so it needs to be excluded
|
||||||
checkColumnDuplication( cols, getKey() );
|
checkColumnDuplication( cols, getKey() );
|
||||||
}
|
}
|
||||||
|
if ( isDiscriminatorInsertable() ) {
|
||||||
checkColumnDuplication( cols, getDiscriminator() );
|
checkColumnDuplication( cols, getDiscriminator() );
|
||||||
|
}
|
||||||
checkPropertyColumnDuplication( cols, getNonDuplicatedProperties() );
|
checkPropertyColumnDuplication( cols, getNonDuplicatedProperties() );
|
||||||
for ( Join join : getJoins() ) {
|
for ( Join join : getJoins() ) {
|
||||||
cols.clear();
|
cols.clear();
|
||||||
|
|
Loading…
Reference in New Issue