Skip to content

Commit

Permalink
feat: upgrade datafusion to 44.0 (#3341)
Browse files Browse the repository at this point in the history
I wanted to upgrade to 44 to check and see if the string sorting bug was
fixed. It wasn't. However, it might still be useful to commit this since
we'll need to upgrade at some point.
  • Loading branch information
westonpace authored Jan 13, 2025
1 parent cfeece4 commit cf49205
Show file tree
Hide file tree
Showing 19 changed files with 629 additions and 674 deletions.
586 changes: 244 additions & 342 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 8 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,20 +95,18 @@ criterion = { version = "0.5", features = [
"html_reports",
] }
crossbeam-queue = "0.3"
datafusion = { version = "42.0", default-features = false, features = [
datafusion = { version = "44.0", default-features = false, features = [
"nested_expressions",
"regex_expressions",
"unicode_expressions",
] }
datafusion-common = "42.0"
datafusion-functions = { version = "42.0", features = ["regex_expressions"] }
datafusion-sql = "42.0"
datafusion-expr = "42.0"
datafusion-execution = "42.0"
datafusion-optimizer = "42.0"
datafusion-physical-expr = { version = "42.0", features = [
"regex_expressions",
] }
datafusion-common = "44.0"
datafusion-functions = { version = "44.0", features = ["regex_expressions"] }
datafusion-sql = "44.0"
datafusion-expr = "44.0"
datafusion-execution = "44.0"
datafusion-optimizer = "44.0"
datafusion-physical-expr = { version = "44.0" }
deepsize = "0.2.0"
dirs = "5.0.0"
either = "1.0"
Expand Down
Loading

0 comments on commit cf49205

Please sign in to comment.