Skip to content

Commit

Permalink
[PlSql] Fix alphabetic match portability
Browse files Browse the repository at this point in the history
  • Loading branch information
lbovet committed Mar 25, 2024
1 parent ac02990 commit 8c55533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/plsql/PlSqlLexer.g4
Expand Up @@ -2512,7 +2512,7 @@ SPACES: [ \t\r\n]+ -> channel(HIDDEN);

fragment NEWLINE_EOF : NEWLINE | EOF;
fragment QUESTION_MARK : '?';
fragment SIMPLE_LETTER : [\p{Alphabetic}\p{General_Category=Other_Letter}];
fragment SIMPLE_LETTER : [A-Z\p{Alphabetic}];
fragment FLOAT_FRAGMENT : UNSIGNED_INTEGER* '.'? UNSIGNED_INTEGER+;
fragment NEWLINE : '\r'? '\n';
fragment SPACE : [ \t];

0 comments on commit 8c55533

Please sign in to comment.