Skip to content

Commit

Permalink
Fix capital expression not recognoized
Browse files Browse the repository at this point in the history
Signed-off-by: xiaofanluan <[email protected]>
  • Loading branch information
xiaofan-luan committed Jan 1, 2025
1 parent 95c1ccc commit 1a8b897
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/parser/planparserv2/Plan.g4
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ BAND: '&';
BOR: '|';
BXOR: '^';

AND: '&&' | 'and';
OR: '||' | 'or';
AND: '&&' | 'and' | 'AND';
OR: '||' | 'or' | 'OR';

BNOT: '~';
NOT: '!' | 'not';
NOT: '!' | 'not' | 'NOT';

IN: 'in' | 'IN';
EmptyArray: '[' (Whitespace | Newline)* ']';
Expand Down

0 comments on commit 1a8b897

Please sign in to comment.