Skip to content

Commit 3dc7e1b

Browse files
committed
feat: upgrade to datafusion 42 and arrow 53
Both datafusion and arrow had recent releases. This change updates the code to used those new versions. The biggest changes were related to rewriting table scans in expressions as Expr::Sort was removed and options were added to Expr::Wildcard. Finally, I did a little cleanup of workspace dependencies as a few were duplicated across the various members.
1 parent c790970 commit 3dc7e1b

File tree

7 files changed

+66
-2454
lines changed

7 files changed

+66
-2454
lines changed

Cargo.toml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,20 @@ readme = "README.md"
1515
repository = "https://github.com/datafusion-contrib/datafusion-federation"
1616

1717
[workspace.dependencies]
18-
async-trait = "0.1.81"
18+
arrow = "53.0.0"
19+
arrow-flight = { version = "53.0.0", features = ["flight-sql-experimental"] }
20+
arrow-json = "53.0.0"
1921
async-stream = "0.3.5"
22+
async-trait = "0.1.81"
23+
datafusion = "42.0.0"
24+
# XXX use the release version on crates.io
25+
datafusion-federation = { path = "./datafusion-federation" }
26+
datafusion-substrait = "42.0.0"
2027
futures = "0.3.30"
21-
datafusion = "41.0.0"
22-
datafusion-substrait = "41.0.0"
23-
arrow-json = "52.2.0"
24-
datafusion-federation = "0.2.1"
28+
tokio = { version = "1.39.3", features = ["full"] }
29+
tonic = { version = "0.12.1", features = [
30+
"tls",
31+
"transport",
32+
"codegen",
33+
"prost",
34+
] }

0 commit comments

Comments
 (0)