Skip to content

Commit

Permalink
Add SELECT ALL and FULL/NATURAL JOIN syntax to grammar (#17508)
Browse files Browse the repository at this point in the history
* Add SELECT ALL to grammar

* more
  • Loading branch information
Charles-Gagnon authored Dec 23, 2022
1 parent e3ca9cb commit 998c713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syntaxes/SQL.plist
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@
</dict>
<dict>
<key>match</key>
<string>(?i:\b(select(\s+distinct)?|insert\s+(ignore\s+)?into|update|delete|from|set|where|group\s+by|or|like|and|union(\s+all)?|having|order\s+by|limit|(inner|cross)\s+join|join|straight_join|full\s+outer\s+join|(left|right)(\s+outer)?\s+join|natural(\s+(left|right)(\s+outer)?)?\s+join)\b)</string>
<string>(?i:\b(select(\s+(all|distinct))?|insert\s+(ignore\s+)?into|update|delete|from|set|where|group\s+by|or|like|and|union(\s+all)?|having|order\s+by|limit|cross\s+join|join|straight_join|(inner|(left|right|full)(\s+outer)?)\s+join|natural(\s+(inner|(left|right|full)(\s+outer)?))?\s+join)\b)</string>
<key>name</key>
<string>keyword.other.DML.sql</string>
</dict>
Expand Down

0 comments on commit 998c713

Please sign in to comment.