Skip to content

Commit

Permalink
feat(languages): SQL (#2097)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Ramirez authored Apr 14, 2022
1 parent 764adbd commit 460e6a8
Show file tree
Hide file tree
Showing 3 changed files with 179 additions and 0 deletions.
1 change: 1 addition & 0 deletions book/src/generated/lang-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
| rust |||| `rust-analyzer` |
| scala || || `metals` |
| solidity || | | `solc` |
| sql || | | |
| svelte || || `svelteserver` |
| swift || | | `sourcekit-lsp` |
| tablegen |||| |
Expand Down
13 changes: 13 additions & 0 deletions languages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1137,3 +1137,16 @@ indent = { tab-width = 2, unit = " " }
[[grammar]]
name = "heex"
source = { git = "https://github.com/connorlay/tree-sitter-heex", rev = "592e22292a367312c35e13de7fdb888f029981d6" }

[[language]]
name = "sql"
scope = "source.sql"
file-types = ["sql"]
roots = []
comment-token = "--"
indent = { tab-width = 4, unit = " " }
injection-regex = "sql"

[[grammar]]
name = "sql"
source = { git = "https://github.com/DerekStride/tree-sitter-sql", rev = "0caa7fa2ee00e0b770493a79d4efacc1fc376cc5" }
165 changes: 165 additions & 0 deletions runtime/queries/sql/highlights.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
(comment) @comment

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

[
"*"
"+"
"-"
"/"
"%"
"^"
"||"
"="
"<"
"<="
"!="
">="
">"
] @operator

[
(keyword_null)
(keyword_true)
(keyword_false)
] @constant.builtin

(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)

[
(keyword_select)
(keyword_delete)
(keyword_insert)
(keyword_replace)
(keyword_update)
(keyword_into)
(keyword_values)
(keyword_set)
(keyword_from)
(keyword_left)
(keyword_right)
(keyword_inner)
(keyword_outer)
(keyword_cross)
(keyword_join)
(keyword_lateral)
(keyword_on)
(keyword_not)
(keyword_order_by)
(keyword_group_by)
(keyword_having)
(keyword_desc)
(keyword_asc)
(keyword_limit)
(keyword_offset)
(keyword_primary)
(keyword_create)
(keyword_alter)
(keyword_drop)
(keyword_add)
(keyword_table)
(keyword_view)
(keyword_materialized)
(keyword_column)
(keyword_key)
(keyword_as)
(keyword_distinct)
(keyword_constraint)
; (keyword_count)
(keyword_max)
(keyword_min)
(keyword_avg)
(keyword_end)
(keyword_force)
(keyword_using)
(keyword_use)
(keyword_index)
(keyword_for)
(keyword_if)
(keyword_exists)
(keyword_auto_increment)
(keyword_default)
(keyword_cascade)
(keyword_with)
(keyword_no)
(keyword_data)
(keyword_type)
(keyword_rename)
(keyword_to)
(keyword_schema)
(keyword_owner)
(keyword_temp)
(keyword_temporary)
(keyword_union)
(keyword_all)
(keyword_except)
(keyword_intersect)
(keyword_returning)
(keyword_begin)
(keyword_commit)
(keyword_rollback)
(keyword_transaction)
] @keyword

[
(keyword_case)
(keyword_when)
(keyword_then)
(keyword_else)
(keyword_where)
] @keyword.control.conditional

[
(keyword_in)
(keyword_and)
(keyword_or)
(keyword_is)
] @keyword.operator

[
(keyword_boolean)
(keyword_smallserial)
(keyword_serial)
(keyword_bigserial)
(keyword_smallint)
(keyword_int)

(bigint)
(decimal)
(numeric)
(keyword_real)
(double)

(keyword_money)

(char)
(varchar)
(keyword_text)

(keyword_uuid)

(keyword_json)
(keyword_jsonb)
(keyword_xml)

(keyword_bytea)

(keyword_date)
(keyword_datetime)
(keyword_timestamp)
(keyword_timestamptz)

(keyword_geometry)
(keyword_geography)
(keyword_box2d)
(keyword_box3d)
] @type.builtin

0 comments on commit 460e6a8

Please sign in to comment.