Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
06494af
WIP: ODBC
georgestagg Mar 17, 2026
8dc3310
WIP: ODBC
georgestagg Mar 18, 2026
27144dd
WIP: ODBC
georgestagg Mar 18, 2026
41a8b99
WIP: ODBC
georgestagg Mar 18, 2026
f6e2b4e
WIP: ODBC
georgestagg Mar 18, 2026
ae29fa0
ODBC: Quoting is fun
georgestagg Mar 19, 2026
5d68d92
WIP: Quoting is more fun
georgestagg Mar 20, 2026
f59490c
WIP: Quoting
georgestagg Mar 20, 2026
efd10ab
Merge branch 'main' into wip-odbc
georgestagg Mar 31, 2026
c2e8976
sqlite in executor.rs
georgestagg Mar 31, 2026
46a4bc3
Use general SqlDialect in ODBC reader
georgestagg Mar 31, 2026
35885bc
Data explorer integration
georgestagg Mar 31, 2026
75ad843
Reply to JSON-RPC even if null
georgestagg Mar 31, 2026
5b9fb79
More quoting fun
georgestagg Mar 31, 2026
58d3b86
Fix casting in median calculation
georgestagg Mar 31, 2026
70b5bc7
Support sparklines in data explorer
georgestagg Mar 31, 2026
b0f25a8
Snowflake issues
georgestagg Mar 31, 2026
f76a7d8
More fun with quoting
georgestagg Mar 31, 2026
a93f3d4
cargo fmt
georgestagg Mar 31, 2026
27a6520
Keep clippy happy
georgestagg Mar 31, 2026
2317ca8
Install ODBC in GHA workflows
georgestagg Mar 31, 2026
2bc6b3c
Tweaks to comments
georgestagg Apr 7, 2026
69a8b71
Further quoting fun
georgestagg Apr 7, 2026
c6a6721
Further tweaks to quoting
georgestagg Apr 7, 2026
5da4860
Loosen reader validation
georgestagg Apr 7, 2026
866205f
Remove temporary doc file
georgestagg Apr 7, 2026
99e55ab
Use typed arrays to build Polars series in ODBC reader
georgestagg Apr 7, 2026
adc2577
cargo fmt
georgestagg Apr 7, 2026
c96e8d8
Merge branch 'main' into wip-odbc
georgestagg Apr 7, 2026
9b0c57f
Keep clippy happy
georgestagg Apr 7, 2026
9d158b0
Add suggestions from LLM code review
georgestagg Apr 7, 2026
bc98e37
cargo fmt
georgestagg Apr 7, 2026
5e998f8
Merge branch 'main' into wip-odbc
georgestagg Apr 9, 2026
fed460c
Add duckdb feature dependency in ggsql-jupyter
georgestagg Apr 9, 2026
24ace14
Merge branch 'main' into wip-odbc
georgestagg Apr 9, 2026
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
3 changes: 3 additions & 0 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
- name: Install tree-sitter-cli
run: npm install -g tree-sitter-cli

- name: Install ODBC
run: sudo apt-get install -y unixodbc-dev

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- name: Install LLVM
run: sudo apt-get install -y llvm

- name: Install ODBC
run: sudo apt-get install -y unixodbc-dev

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
- name: Install LLVM
run: sudo apt-get install -y llvm

- name: Install ODBC
run: sudo apt-get install -y unixodbc-dev

- name: Install Rust
uses: dtolnay/rust-toolchain@stable

Expand Down
Loading
Loading