HHH-5879 Expose getPropertyUniqueness from AbstractEntityPersister

This commit is contained in:
Emmanuel Bernard 2011-01-28 12:35:03 -06:00
parent 1ae42c886e
commit 224121aee1
1 changed files with 4 additions and 0 deletions

View File

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