HHH-11739 - globally_quoted_identifiers_skip_column_definitions property does the opposite of what the doc describes

This commit is contained in:
Andrea Boriero 2017-05-11 21:11:59 -05:00
parent 3f60619f3f
commit e950957b89
1 changed files with 1 additions and 1 deletions

View File

@ -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