Skip to content

Commit e950957

Browse files
committed
HHH-11739 - globally_quoted_identifiers_skip_column_definitions property does the opposite of what the doc describes
1 parent 3f60619 commit e950957

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hibernate-core/src/main/java/org/hibernate/engine/jdbc/env/internal/NormalizingIdentifierHelperImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public Identifier toIdentifier(String text, boolean quoted) {
9393

9494
@Override
9595
public Identifier applyGlobalQuoting(String text) {
96-
return Identifier.toIdentifier( text, globallyQuoteIdentifiers && globallyQuoteIdentifiersSkipColumnDefinitions );
96+
return Identifier.toIdentifier( text, globallyQuoteIdentifiers && !globallyQuoteIdentifiersSkipColumnDefinitions );
9797
}
9898

9999
@Override

0 commit comments

Comments
 (0)