Skip to content

Commit a2f81f3

Browse files
committed
corrected a lookahead issue
1 parent daea33e commit a2f81f3

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
@@ -2085,7 +2085,7 @@ Expression LikeExpression() #LikeExpression:
20852085
}
20862086
{
20872087
(
2088-
(
2088+
LOOKAHEAD(3) (
20892089
leftExpression=SimpleExpression()
20902090
[<K_NOT> { result.setNot(true); } ] ( <K_LIKE> | <K_ILIKE> { result.setCaseInsensitive(true); } ) rightExpression=SimpleExpression()
20912091
[<K_ESCAPE> token=<S_CHAR_LITERAL> { result.setEscape((new StringValue(token.image)).getValue()); }]

0 commit comments

Comments
 (0)