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
Upgrade datafusion to 47 and datafusion-federation to 0.4.2 (#324)
* Upgrade datafusion and datafusion-federation
* Use RemoteTableRef::from instead of RemoteTableRef::try_from
* Upgrade DuckDB to 1.3.0
* Add Rust toolchain to pin rustc/clippy version
---------
Co-authored-by: Phillip LeBlanc <phillip@leblanc.tech>
Copy file name to clipboardExpand all lines: Cargo.toml
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -31,21 +31,21 @@ license = "Apache-2.0"
31
31
description = "Extend the capabilities of DataFusion to support additional data sources via implementations of the `TableProvider` trait."
32
32
33
33
[workspace.dependencies]
34
-
arrow = "54.2.1"
35
-
arrow-array = { version = "54.2.1" }
36
-
arrow-flight = { version = "54.2.1", features = [
34
+
arrow = "55.0.0"
35
+
arrow-array = { version = "55.0.0" }
36
+
arrow-flight = { version = "55.0.0", features = [
37
37
"flight-sql-experimental",
38
38
"tls",
39
39
] }
40
-
arrow-schema = { version = "54.2.1", features = ["serde"] }
41
-
arrow-json = "54.2.1"
42
-
arrow-odbc = { version = "16" }
43
-
datafusion = { version = "46", default-features = false }
44
-
datafusion-expr = { version = "46" }
45
-
datafusion-federation = { version = "=0.3.7" }
46
-
datafusion-ffi = { version = "46" }
47
-
datafusion-proto = { version = "46" }
48
-
datafusion-physical-expr = { version = "46" }
49
-
datafusion-physical-plan = { version = "46" }
40
+
arrow-schema = { version = "55.0.0", features = ["serde"] }
41
+
arrow-json = "55.0.0"
42
+
arrow-odbc = { version = "16.0.1" }
43
+
datafusion = { version = "47", default-features = false }
44
+
datafusion-expr = { version = "47" }
45
+
datafusion-federation = { version = "=0.4.2" }
46
+
datafusion-ffi = { version = "47" }
47
+
datafusion-proto = { version = "47" }
48
+
datafusion-physical-expr = { version = "47" }
49
+
datafusion-physical-plan = { version = "47" }
50
50
datafusion-table-providers = { path = "core" }
51
-
duckdb = { version = "=1.2.1", package = "spiceai_duckdb_fork" } # Forked to add support for duckdb_scan_arrow, pending: https://github.com/duckdb/duckdb-rs/pull/488
51
+
duckdb = { version = "=1.3.0", package = "spiceai_duckdb_fork" } # Forked to add support for duckdb_scan_arrow, pending: https://github.com/duckdb/duckdb-rs/pull/488
0 commit comments