HHH-5879 Expose getPropertyUniqueness from AbstractEntityPersister

This commit is contained in:
Emmanuel Bernard 2011-01-28 12:35:03 -06:00 committed by JPAV
parent ab0e173f0e
commit c6a407332a
1 changed files with 4 additions and 0 deletions

View File

@ -1150,6 +1150,10 @@ public abstract class AbstractEntityPersister
return select.addCondition( rootTableKeyColumnNames, "=?" ).toStatementString();
}
protected boolean[] getPropertyUniqueness() {
return propertyUniqueness;
}
protected String generateInsertGeneratedValuesSelectString() {
return generateGeneratedValuesSelectString( getPropertyInsertGenerationInclusions() );
}