Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
6140a7e
Upgrade rusqlite to v0.37 & tokio-rusqlite to v0.7 (#495)
lukekim Nov 24, 2025
607cdbf
Upgrade to `datafusion` 51, `arrow` 57 (#497)
nuno-faria Dec 4, 2025
5296c1c
bump version to 0.9.0
phillipleblanc Dec 4, 2025
5bebce2
Bump actions/checkout from 5 to 6 (#505)
dependabot[bot] Dec 4, 2025
1066e3b
Prevent InsertBuilder from taking ownership of record batches (#518)
nuno-faria Dec 24, 2025
51a39a3
bump version
phillipleblanc Dec 24, 2025
7311652
Add write support for Decimal32 and Decimal64 (#519)
nuno-faria Dec 28, 2025
8b277b5
bump version to 0.9.2
phillipleblanc Dec 28, 2025
e0e0b50
Add MongoDB support to v0.9.2 (DF51)
lukekim Jan 8, 2026
a88dd15
Make sql_table module public
lukekim Jan 9, 2026
5f08643
Add SpiceAI DuckSqlExec extensions (indexes, optimized_sql, with_opti…
lukekim Jan 9, 2026
edf2352
Update to use datafusion-federation spiceai-51 with AstAnalyzerRule API
lukekim Jan 9, 2026
0908ef9
Fix AstAnalyzer API for MySQL and SQLite federation
lukekim Jan 9, 2026
42b1ee6
Update duckdb to spiceai-57 git fork for arrow 57
lukekim Jan 9, 2026
425e4ad
Update duckdb-rs to spiceai-57 with register_arrow_scan_view
lukekim Jan 9, 2026
eb4d166
Make expr module public and add supported_functions from spiceai branch
lukekim Jan 9, 2026
4b83af8
Restore expr module with to_sql and Engine from spiceai branch
lukekim Jan 9, 2026
eb54de9
Use full duckdb-rs revision to match Spice workspace
lukekim Jan 9, 2026
44dba2c
Use manual Clone impl for SqlExec and DuckSqlExec to not require T: C…
lukekim Jan 9, 2026
69eb05e
Add UpsertOptions struct for cayenne compatibility
lukekim Jan 9, 2026
7735a6c
Port spiceai features (WriteCompletionHandler, ViewCreator, etc.) to …
lukekim Jan 10, 2026
c4d7a72
feat: Add spice-specific APIs for DF51 upgrade
lukekim Jan 10, 2026
efd0acb
Bump bb8 from 0.9.0 to 0.9.1
dependabot[bot] Dec 28, 2025
917fa84
Bump bytes from 1.10.1 to 1.11.0 (#515)
dependabot[bot] Jan 10, 2026
0d5b81c
Merge branch 'spiceai' into spiceai-51
lukekim Jan 13, 2026
e0d51f8
Formatting
lukekim Jan 13, 2026
f83a7fc
Merge branch 'main' into spiceai-51
lukekim Jan 13, 2026
90dc6e4
Update tests and snapshots
lukekim Jan 13, 2026
586d305
Updates
lukekim Jan 13, 2026
92881af
Bump arrow-schema from 57.0.0 to 57.2.0
dependabot[bot] Jan 13, 2026
d3fb471
Bump insta from 1.43.2 to 1.46.0
dependabot[bot] Jan 13, 2026
56f87b3
Merge origin/main into spiceai-51
lukekim Jan 13, 2026
8c6224f
Lockfile updates
lukekim Jan 14, 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
8 changes: 4 additions & 4 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: dtolnay/rust-toolchain@stable

Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- 'adbc'

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: dtolnay/rust-toolchain@stable

Expand All @@ -68,7 +68,7 @@ jobs:
MYSQL_DOCKER_IMAGE: public.ecr.aws/ubuntu/mysql:8.0-22.04_beta

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: dtolnay/rust-toolchain@stable

Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: dtolnay/rust-toolchain@stable

Expand Down
Loading