You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update datafusion to 52 & update deps
* Update byte-unit to 5.2
* python: update FFI_TableProvider::new function
* Downgrade adbc to 0.21
* upgrade datafusion-python
* python: Fix an issue with RawTableProvider
* python/pyproject: use compatible version of maturin
* Use datafusion-python 52
* Fix segfault in RawTableProvider by keeping SessionContext alive
The FFI_TableProvider stores a Weak reference to the TaskContextProvider,
but the Arc was created locally and dropped immediately. Use a static
OnceLock to keep it alive. Also update the __datafusion_table_provider__
signature for the v52 protocol and bump datafusion dependency to >=52.0.0.
* core/tests/flight: add a workaround for df.count()
Copy file name to clipboardExpand all lines: Cargo.toml
+20-19Lines changed: 20 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -28,24 +28,25 @@ license = "Apache-2.0"
28
28
description = "Extend the capabilities of DataFusion to support additional data sources via implementations of the `TableProvider` trait."
29
29
30
30
[workspace.dependencies]
31
-
arrow = "57.0.0"
32
-
arrow-array = { version = "57.0.0" }
33
-
arrow-flight = { version = "57.0.0", features = [
34
-
"flight-sql-experimental",
35
-
"tls-ring",
31
+
arrow = "57.2"
32
+
arrow-array = { version = "57.2" }
33
+
arrow-flight = { version = "57.2", features = [
34
+
"flight-sql-experimental",
35
+
"tls-ring",
36
36
] }
37
-
arrow-ipc = { version = "57.0.0" }
38
-
arrow-schema = { version = "57.2.0", features = ["serde"] }
39
-
arrow-json = "57.0.0"
40
-
arrow-odbc = { version = "21.0.0" }
41
-
datafusion = { version = "51", default-features = false }
42
-
datafusion-expr = { version = "51" }
43
-
datafusion-federation = { version = "0.4.11" }
44
-
datafusion-ffi = { version = "51" }
45
-
datafusion-proto = { version = "51" }
46
-
datafusion-physical-expr = { version = "51" }
47
-
datafusion-physical-plan = { version = "51" }
37
+
arrow-ipc = { version = "57.2" }
38
+
arrow-schema = { version = "57.2", features = ["serde"] }
39
+
arrow-json = "57.2"
40
+
arrow-odbc = { version = "21.0" }
41
+
datafusion = { version = "52.0", default-features = false }
42
+
datafusion-expr = { version = "52.0" }
43
+
datafusion-federation = { version = "0.4" }
44
+
datafusion-ffi = { version = "52.0" }
45
+
datafusion-proto = { version = "52.0" }
46
+
datafusion-physical-expr = { version = "52.0" }
47
+
datafusion-physical-plan = { version = "52.0" }
48
+
datafusion-python = { version = "52.0" }
48
49
datafusion-table-providers = { path = "core" }
49
-
duckdb = { version = "=1.3.2", package = "spiceai_duckdb_fork" } # Forked to add support for duckdb_scan_arrow, pending: https://github.com/duckdb/duckdb-rs/pull/488
50
-
adbc_core = { version = "0.21.0" }
51
-
adbc_driver_manager = { version = "0.21.0" }
50
+
duckdb = { version = "=1.3", package = "spiceai_duckdb_fork" } # Forked to add support for duckdb_scan_arrow, pending: https://github.com/duckdb/duckdb-rs/pull/488
0 commit comments