File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
hibernate-core/src/main/java/org/hibernate Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -399,7 +399,7 @@ public interface AvailableSettings {
399399
400400 /**
401401 * Specifies whether to automatically quote any names that are deemed keywords. Auto-quoting
402- * is enabled by default. Set to false to disable .
402+ * is disabled by default. Set to true to enable it .
403403 *
404404 * @since 5.0
405405 */
Original file line number Diff line number Diff line change 3232import org .hibernate .exception .internal .SQLExceptionTypeDelegate ;
3333import org .hibernate .exception .internal .SQLStateConversionDelegate ;
3434import org .hibernate .exception .internal .StandardSQLExceptionConverter ;
35- import org .hibernate .internal .util .config .ConfigurationHelper ;
3635import org .hibernate .service .ServiceRegistry ;
3736import org .hibernate .service .spi .ServiceRegistryImplementor ;
37+
3838import org .jboss .logging .Logger ;
3939
4040/**
@@ -128,8 +128,7 @@ private boolean globalQuotingSkippedForColumnDefinitions(ConfigurationService cf
128128 return cfgService .getSetting (
129129 AvailableSettings .GLOBALLY_QUOTED_IDENTIFIERS_SKIP_COLUMN_DEFINITIONS ,
130130 StandardConverters .BOOLEAN ,
131- // default is true for JPA compliance - DO NOT CHANGE!
132- true
131+ false
133132 );
134133 }
135134
You can’t perform that action at this time.
0 commit comments