Watch
1
0
Fork
You've already forked tree-sitter-sql
0
No description
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann a024f5b6cc
Adding debian version 0.3.11-1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-08-20 08:02:40 +02:00
bindings/python Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00
debian Adding debian version 0.3.11-1. 2026-08-20 08:02:40 +02:00
queries Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00
src Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00
LICENSE Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00
PKG-INFO Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00
pyproject.toml Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00
README.md Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00
setup.cfg Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00
setup.py Adding upstream version 0.3.11. 2026-08-20 07:54:34 +02:00

tree-sitter-sql

Build/test GitHub Pages npm package version

A general/permissive SQL grammar for tree-sitter.

Installation

We don't commit the generated parser files to the main branch. Instead, you can find them on the gh-pages branch. We're open to feedback & encourage you to open an issue to discuss any problems.

They are also hosted on the GitHub pages site and available for download here: github://derekstride/tree-sitter-sql/gh-pages.tar.gz.

Plugin maintainers ensure to specify the HEAD (or a specific revision) of the gh-pages branch when integrating with this project.

Step 1: Download the parser files

Using git

git clone https://github.com/DerekStride/tree-sitter-sql.git
cd tree-sitter-sql
git checkout gh-pages

Using curl

curl -LO https://github.com/DerekStride/tree-sitter-sql/archive/refs/heads/gh-pages.tar.gz
tar -xzf gh-pages.tar.gz
cd tree-sitter-sql-gh-pages

Step 2: Compile the Parser

Tree-sitter parsers need to be compiled as a shared-object / dynamic-library, you can enable this by passing the -shared & -fPIC flags to your compiler.

cc -shared -fPIC -I./src src/parser.c src/scanner.c -o sql.so

Using cargo

cargo add tree-sitter-sequel

Using npm

npm i @derekstride/tree-sitter-sql

Using pip

pip install tree-sitter-sql

Development

See CONTRIBUTING.md for documentation on how to set up the project for development.

Features

For a complete list of features see the the tests

References

Other projects