Skip to content

Commit

Permalink
Update SQL grammar (helix-editor#4529)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivktac authored and Frederik Vestre committed Feb 6, 2023
1 parent 1803504 commit 55759a7
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 8 deletions.
2 changes: 1 addition & 1 deletion languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ injection-regex = "sql"

[[grammar]]
name = "sql"
source = { git = "https://github.com/DerekStride/tree-sitter-sql", rev = "0caa7fa2ee00e0b770493a79d4efacc1fc376cc5" }
source = { git = "https://github.com/DerekStride/tree-sitter-sql", rev = "2743c7b5e710e6854d4e8c14c302548b436e2a1f" }

[[language]]
name = "gdscript"
Expand Down
52 changes: 45 additions & 7 deletions runtime/queries/sql/highlights.scm
Original file line number Diff line number Diff line change
@@ -1,10 +1,47 @@
(keyword_gist) @function.builtin
(keyword_btree) @function.builtin
(keyword_btree) @function.builtin
(keyword_hash) @function.builtin
(keyword_spgist) @function.builtin
(keyword_gin) @function.builtin
(keyword_brin) @function.builtin
(keyword_float) @function.builtin

(invocation
name: (identifier) @function.builtin
parameter: [(field)]? @variable.other.member)

(count
name: (identifier) @function.builtin
parameter: [(field)]? @variable.other.member)

(table_reference
name: (identifier) @namespace)

(relation
table_alias: (identifier) @variable.parameter)

(field
name: (identifier) @variable.other.member)

(field
table_alias: (identifier) @variable.parameter
name: (identifier) @variable.other.member)


(comment) @comment

[
"("
")"
] @punctuation.bracket

[
";"
","
"."
] @punctuation.delimiter

[
"*"
"+"
Expand All @@ -29,11 +66,8 @@

(literal) @string

(set_schema schema: (identifier) @namespace)
(table_reference schema: (identifier) @namespace)
(table_expression schema: (identifier) @namespace)
(all_fields schema: (identifier) @namespace)
(field schema: (identifier) @namespace)
((literal) @constant.numeric
(#match? @constant.numeric "^(-?\d*\.?\d*)$"))

[
(keyword_select)
Expand All @@ -54,8 +88,10 @@
(keyword_lateral)
(keyword_on)
(keyword_not)
(keyword_order_by)
(keyword_group_by)
(keyword_order)
(keyword_group)
(keyword_partition)
(keyword_by)
(keyword_having)
(keyword_desc)
(keyword_asc)
Expand Down Expand Up @@ -89,6 +125,8 @@
(keyword_auto_increment)
(keyword_default)
(keyword_cascade)
(keyword_between)
(keyword_window)
(keyword_with)
(keyword_no)
(keyword_data)
Expand Down

0 comments on commit 55759a7

Please sign in to comment.