Skip to content

Commit

Permalink
Add includeParsingStringLiteralAsArrayLiteral
Browse files Browse the repository at this point in the history
  • Loading branch information
snuyanzin committed Jan 31, 2024
1 parent e5f7a52 commit 2cddfa7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -658,4 +658,5 @@
includeCompoundIdentifier: true
includeBraces: true
includeAdditionalDeclarations: false
includeParsingStringLiteralAsArrayLiteral: false
}
Original file line number Diff line number Diff line change
Expand Up @@ -166,4 +166,14 @@ public boolean allowQualifyingCommonColumn() {
public SqlLibrary semantics() {
return SqlConformanceEnum.DEFAULT.semantics();
}

@Override
public boolean allowCoercionStringToArray() {
return SqlConformanceEnum.DEFAULT.allowCoercionStringToArray();
}

@Override
public boolean isValueAllowed() {
return SqlConformanceEnum.DEFAULT.isValueAllowed();
}
}

0 comments on commit 2cddfa7

Please sign in to comment.