Skip to content

Commit

Permalink
chore: update metho4 query
Browse files Browse the repository at this point in the history
Signed-off-by: Otavio Santana <otaviopolianasantana@gmail.com>
  • Loading branch information
otaviojava committed Sep 25, 2023
1 parent d8217bb commit a53b72f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion antlr4/org/eclipse/jnosql/query/grammar/method/Method.g4
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ in: variable not? 'In';
like: variable not? 'Like';
not: 'Not';
variable: ANY_NAME;
ANY_NAME: [a-zA-Z_.-] [a-zA-Z_.0-9-]*;
ANY_NAME: [a-zA-Z_.][a-zA-Z_.0-9-]*;
WS: [ \t\r\n]+ -> skip ;
fragment ESC : '\\' (["\\/bfnrt] | UNICODE) ;
fragment UNICODE : 'u' HEX HEX HEX HEX ;
Expand Down

0 comments on commit a53b72f

Please sign in to comment.