HHH-9926 Properly applying auto-quoting setting

This commit is contained in:
Gunnar Morling 2015-07-15 16:48:29 +02:00
parent 56448fafa2
commit 5e894c993b
1 changed files with 1 additions and 2 deletions

View File

@ -34,7 +34,6 @@ import org.hibernate.exception.internal.SQLStateConversionDelegate;
import org.hibernate.exception.internal.StandardSQLExceptionConverter;
import org.hibernate.service.ServiceRegistry;
import org.hibernate.service.spi.ServiceRegistryImplementor;
import org.jboss.logging.Logger;
/**
@ -77,7 +76,7 @@ public class JdbcEnvironmentImpl implements JdbcEnvironment {
final IdentifierHelperBuilder identifierHelperBuilder = IdentifierHelperBuilder.from( this );
identifierHelperBuilder.setGloballyQuoteIdentifiers( globalQuoting( cfgService ) );
identifierHelperBuilder.setGloballyQuoteIdentifiers( autoQuoting( cfgService ) );
identifierHelperBuilder.setAutoQuoteKeywords( autoQuoting( cfgService ) );
identifierHelperBuilder.setNameQualifierSupport( nameQualifierSupport );
IdentifierHelper identifierHelper = null;