@@ -78,7 +78,7 @@ public JdbcEnvironmentImpl(ServiceRegistryImplementor serviceRegistry, Dialect d
78
78
79
79
final IdentifierHelperBuilder identifierHelperBuilder = IdentifierHelperBuilder .from ( this );
80
80
identifierHelperBuilder .setGloballyQuoteIdentifiers ( globalQuoting ( cfgService ) );
81
- identifierHelperBuilder .setAutoQuoteKeywords ( autoQuoting ( cfgService ) );
81
+ identifierHelperBuilder .setAutoQuoteKeywords ( autoKeywordQuoting ( cfgService ) );
82
82
identifierHelperBuilder .setNameQualifierSupport ( nameQualifierSupport );
83
83
84
84
IdentifierHelper identifierHelper = null ;
@@ -114,11 +114,11 @@ private static boolean globalQuoting(ConfigurationService cfgService) {
114
114
);
115
115
}
116
116
117
- private static boolean autoQuoting (ConfigurationService cfgService ) {
117
+ private static boolean autoKeywordQuoting (ConfigurationService cfgService ) {
118
118
return cfgService .getSetting (
119
119
AvailableSettings .KEYWORD_AUTO_QUOTING_ENABLED ,
120
120
StandardConverters .BOOLEAN ,
121
- true
121
+ false
122
122
);
123
123
}
124
124
@@ -218,7 +218,7 @@ public JdbcEnvironmentImpl(
218
218
219
219
final IdentifierHelperBuilder identifierHelperBuilder = IdentifierHelperBuilder .from ( this );
220
220
identifierHelperBuilder .setGloballyQuoteIdentifiers ( globalQuoting ( cfgService ) );
221
- identifierHelperBuilder .setAutoQuoteKeywords ( autoQuoting ( cfgService ) );
221
+ identifierHelperBuilder .setAutoQuoteKeywords ( autoKeywordQuoting ( cfgService ) );
222
222
identifierHelperBuilder .setNameQualifierSupport ( nameQualifierSupport );
223
223
IdentifierHelper identifierHelper = null ;
224
224
try {
0 commit comments