HHH-11739 - globally_quoted_identifiers_skip_column_definitions property does the opposite of what the doc describes
This commit is contained in:
parent
3f60619f3f
commit
e950957b89
|
@ -93,7 +93,7 @@ public class NormalizingIdentifierHelperImpl implements IdentifierHelper {
|
|||
|
||||
@Override
|
||||
public Identifier applyGlobalQuoting(String text) {
|
||||
return Identifier.toIdentifier( text, globallyQuoteIdentifiers && globallyQuoteIdentifiersSkipColumnDefinitions );
|
||||
return Identifier.toIdentifier( text, globallyQuoteIdentifiers && !globallyQuoteIdentifiersSkipColumnDefinitions );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue