Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
177 changes: 173 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
toml = "0.8"
sqlparser = "0.47"
sqlparser = "0.61"
regex = "1.10"
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ cat query.sql | sqlchisel --stdin --format
- Stable formatter behavior: [`docs/format-contract.md`](docs/format-contract.md)
- Formatting heuristics (non-contract): [`docs/style-guide.md`](docs/style-guide.md)
- Dremio support notes: [`docs/dremio.md`](docs/dremio.md)
- Dremio reference coverage tracker: [`docs/dremio-support-matrix.md`](docs/dremio-support-matrix.md)
- Editor integrations: [`docs/editor-integrations.md`](docs/editor-integrations.md)

## Contributing
Expand Down
1 change: 1 addition & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This directory separates stable behavior from formatting heuristics and integrat

- [`style-guide.md`](style-guide.md): current formatting heuristics and examples (non-contract)
- [`dremio.md`](dremio.md): Dremio-specific supported syntax and formatting expectations
- [`dremio-support-matrix.md`](dremio-support-matrix.md): command-by-command Dremio SQL reference coverage tracker

## Integrations and Development

Expand Down
5 changes: 5 additions & 0 deletions docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ This guide covers day-to-day development practices for `sqlchisel`.
- Keep `docs/repo-cleanup-checklist.md` updated while the docs/module split effort is in progress.
- Prefer using `--format`, `--check`, or `--write` locally to mirror user workflows.
- For Dremio work, add parser + formatter coverage and tests together.
- For Dremio syntax additions, update all four together:
- `fixtures/dremio/reference-commands/`
- parser tests (`src/parser.rs`)
- formatter tests (`src/format/sql/mod.rs`)
- `docs/dremio-support-matrix.md`

## Code Style

Expand Down
Loading
Loading