Skip to content

Commit

Permalink
feat(cli): add qualify token (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
ariesdevil authored Dec 1, 2023
1 parent 71b8a3f commit 231300a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions cli/src/ast/tokenizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -638,6 +638,8 @@ pub enum TokenKind {
PURGE,
#[token("PUT", ignore(ascii_case))]
PUT,
#[token("QUALIFY", ignore(ascii_case))]
QUALIFY,
#[token("QUARTER", ignore(ascii_case))]
QUARTER,
#[token("QUERY", ignore(ascii_case))]
Expand Down Expand Up @@ -1094,6 +1096,7 @@ impl TokenKind {
| TokenKind::OF
| TokenKind::ORDER
| TokenKind::OVER
| TokenKind::QUALIFY
| TokenKind::ROWS
// | TokenKind::PRECISION
// | TokenKind::RETURNING
Expand Down Expand Up @@ -1210,6 +1213,7 @@ impl TokenKind {
| TokenKind::OF
| TokenKind::ORDER
| TokenKind::OVER
| TokenKind::QUALIFY
| TokenKind::ROWS
| TokenKind::RANGE
// | TokenKind::OVERLAPS
Expand Down

0 comments on commit 231300a

Please sign in to comment.