Update SQL grammar (#4529)

pull/4449/head^2
seshotake 2 years ago committed by GitHub
parent 908529ccac
commit f6710879d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1371,7 +1371,7 @@ injection-regex = "sql"
[[grammar]] [[grammar]]
name = "sql" 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]] [[language]]
name = "gdscript" name = "gdscript"

@ -1,3 +1,34 @@
(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 (comment) @comment
[ [
@ -5,6 +36,12 @@
")" ")"
] @punctuation.bracket ] @punctuation.bracket
[
";"
","
"."
] @punctuation.delimiter
[ [
"*" "*"
"+" "+"
@ -29,11 +66,8 @@
(literal) @string (literal) @string
(set_schema schema: (identifier) @namespace) ((literal) @constant.numeric
(table_reference schema: (identifier) @namespace) (#match? @constant.numeric "^(-?\d*\.?\d*)$"))
(table_expression schema: (identifier) @namespace)
(all_fields schema: (identifier) @namespace)
(field schema: (identifier) @namespace)
[ [
(keyword_select) (keyword_select)
@ -54,8 +88,10 @@
(keyword_lateral) (keyword_lateral)
(keyword_on) (keyword_on)
(keyword_not) (keyword_not)
(keyword_order_by) (keyword_order)
(keyword_group_by) (keyword_group)
(keyword_partition)
(keyword_by)
(keyword_having) (keyword_having)
(keyword_desc) (keyword_desc)
(keyword_asc) (keyword_asc)
@ -89,6 +125,8 @@
(keyword_auto_increment) (keyword_auto_increment)
(keyword_default) (keyword_default)
(keyword_cascade) (keyword_cascade)
(keyword_between)
(keyword_window)
(keyword_with) (keyword_with)
(keyword_no) (keyword_no)
(keyword_data) (keyword_data)

Loading…
Cancel
Save