HHH-9926 Properly applying auto-quoting setting
This commit is contained in:
parent
56448fafa2
commit
5e894c993b
|
@ -34,7 +34,6 @@ import org.hibernate.exception.internal.SQLStateConversionDelegate;
|
||||||
import org.hibernate.exception.internal.StandardSQLExceptionConverter;
|
import org.hibernate.exception.internal.StandardSQLExceptionConverter;
|
||||||
import org.hibernate.service.ServiceRegistry;
|
import org.hibernate.service.ServiceRegistry;
|
||||||
import org.hibernate.service.spi.ServiceRegistryImplementor;
|
import org.hibernate.service.spi.ServiceRegistryImplementor;
|
||||||
|
|
||||||
import org.jboss.logging.Logger;
|
import org.jboss.logging.Logger;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -77,7 +76,7 @@ public class JdbcEnvironmentImpl implements JdbcEnvironment {
|
||||||
|
|
||||||
final IdentifierHelperBuilder identifierHelperBuilder = IdentifierHelperBuilder.from( this );
|
final IdentifierHelperBuilder identifierHelperBuilder = IdentifierHelperBuilder.from( this );
|
||||||
identifierHelperBuilder.setGloballyQuoteIdentifiers( globalQuoting( cfgService ) );
|
identifierHelperBuilder.setGloballyQuoteIdentifiers( globalQuoting( cfgService ) );
|
||||||
identifierHelperBuilder.setGloballyQuoteIdentifiers( autoQuoting( cfgService ) );
|
identifierHelperBuilder.setAutoQuoteKeywords( autoQuoting( cfgService ) );
|
||||||
identifierHelperBuilder.setNameQualifierSupport( nameQualifierSupport );
|
identifierHelperBuilder.setNameQualifierSupport( nameQualifierSupport );
|
||||||
|
|
||||||
IdentifierHelper identifierHelper = null;
|
IdentifierHelper identifierHelper = null;
|
||||||
|
|
Loading…
Reference in New Issue