Skip to content

Commit a3df377

Browse files
committed
add quoted identifier for "und-x-icu"
1 parent 5745187 commit a3df377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/jjtree/net/sf/jsqlparser/parser/JSqlParserCC.jjt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6453,7 +6453,7 @@ Expression PrimaryExpression() #PrimaryExpression:
64536453
)
64546454

64556455
[
6456-
LOOKAHEAD(2) <K_COLLATE> token=<S_IDENTIFIER> { retval = new CollateExpression(retval, token.image); }
6456+
LOOKAHEAD(2) <K_COLLATE> (token=<S_CHAR_LITERAL> | token=<S_QUOTED_IDENTIFIER> | token=<S_IDENTIFIER>) { retval = new CollateExpression(retval, token.image); }
64576457
]
64586458

64596459
[

0 commit comments

Comments
 (0)