Skip to content
Open
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
16 changes: 16 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ jobs:
- name: Install ODBC
run: sudo apt-get install -y unixodbc-dev

- name: Install protobuf compiler
# adbc_datafusion (dev-dep) → datafusion → substrait → prost-build,
# which invokes `protoc` at build time. Required for the ADBC test path.
run: sudo apt-get install -y protobuf-compiler

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

Expand Down Expand Up @@ -64,6 +69,17 @@ jobs:
- name: Run Rust tests
run: cargo test --lib --bins

- name: Install dbc CLI and SQLite ADBC driver
run: |
curl -LsSf https://dbc.columnar.tech/install.sh | sh
"$HOME/.local/bin/dbc" install sqlite

- name: Run ADBC unit tests
run: cargo test --features "adbc sqlite" --lib

- name: Run ADBC SQLite equivalence tests
run: cargo test --features "adbc sqlite" --lib -- --ignored equivalence

- name: Build WASM library
working-directory: ggsql-wasm/library
run: npm install && npm run build
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [Unreleased]

### Added

- New `AdbcReader<D: Driver>` for connecting to data sources via [ADBC](https://arrow.apache.org/adbc/) (Arrow Database Connectivity), behind a new off-by-default `adbc` feature flag. Generic over any concrete `adbc_core::sync::Driver`, so concrete drivers (Flight SQL, Snowflake, etc.) compose at the call site. Tested against `adbc_datafusion` for in-process unit coverage.

## 0.3.1 - 2026-04-30

### Fixed
Expand Down
Loading
Loading