Skip to content

Commit

Permalink
QP-4930 QP-4966 Fix underscore charset to case insensitive (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
Web-Engine committed Sep 1, 2023
1 parent b3fe26d commit ce4a4eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Qsi.MySql/Antlr/MySqlLexerInternal.g4
Expand Up @@ -1111,7 +1111,7 @@ INVALID_INPUT:
// ** Patch by QSI
// The underscore charset token is used to defined the repertoire of a string, though it conflicts
// with normal identifiers, which also can start with an underscore.
UNDERSCORE_CHARSET: '_' [a-z0-9]+ { setType(checkCharset(getText())); };
UNDERSCORE_CHARSET: '_' [a-zA-Z0-9]+ { setType(checkCharset(getText())); };

// Identifiers might start with a digit, even though it is discouraged, and may not consist entirely of digits only.
// All keywords above are automatically excluded.
Expand Down

0 comments on commit ce4a4eb

Please sign in to comment.