Skip to content

Commit

Permalink
fix: add missing SQL keywords: IS and IN (#5263)
Browse files Browse the repository at this point in the history
  • Loading branch information
wlodi83 committed Jul 21, 2023
1 parent 6549570 commit c731164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mode/sql_highlight_rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var SqlHighlightRules = function() {
var keywords = (
"select|insert|update|delete|from|where|and|or|group|by|order|limit|offset|having|as|case|" +
"when|then|else|end|type|left|right|join|on|outer|desc|asc|union|create|table|primary|key|if|" +
"foreign|not|references|default|null|inner|cross|natural|database|drop|grant|distinct"
"foreign|not|references|default|null|inner|cross|natural|database|drop|grant|distinct|is|in"
);

var builtinConstants = (
Expand Down

0 comments on commit c731164

Please sign in to comment.