THe SqlLexer also now recognizes casts.

This commit is contained in:
eelke 2018-01-06 21:18:28 +01:00
parent a99f059b70
commit b436814eb5
3 changed files with 55 additions and 1 deletions

View file

@ -13,7 +13,8 @@ enum class BasicTokenType {
QuotedString,
DollarQuote, // Return the dollar quote tag, do not consume the entire string (potentially long)
QuotedIdentifier,
Parameter
Parameter,
Cast
};
enum class LexerState {