Skip to content

Commit

Permalink
sql: Add elsif into SqlReservedWord for PL/SQL
Browse files Browse the repository at this point in the history
  • Loading branch information
techee committed Mar 21, 2023
1 parent 9f532d3 commit b8d6a4a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions parsers/sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -438,6 +438,7 @@ static struct SqlReservedWord SqlReservedWord [SQLKEYWORD_COUNT] = {
[KEYWORD_drop] = {1 & 0&1&1&1 & 1&1 & 1},
[KEYWORD_else] = {1 & 1&1&1&1 & 1&1 & 1},
[KEYWORD_elseif] = {1 & 0&0&0&0 & 0&0 & 1},
[KEYWORD_elsif] = {0 & 0&0&0&0 & 0&1 & 0},
[KEYWORD_end] = {0 & 1&1&1&1 & 0&1 & 1},
[KEYWORD_endif] = {0 & 0&0&0&0 & 0&0 & 1},
[KEYWORD_event] = {0 & 0&0&0&0 & 0&0 & 0},
Expand Down

0 comments on commit b8d6a4a

Please sign in to comment.