Skip to content

Commit

Permalink
Use DataFusion 28 (#439)
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove authored Jul 25, 2023
1 parent 309fc48 commit ffd1541
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 22 deletions.
40 changes: 24 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ protoc = [ "datafusion-substrait/protoc" ]
tokio = { version = "1.24", features = ["macros", "rt", "rt-multi-thread", "sync"] }
rand = "0.8"
pyo3 = { version = "0.19", features = ["extension-module", "abi3", "abi3-py38"] }
datafusion = { git = "https://github.com/apache/arrow-datafusion.git", rev = "28.0.0-rc1", features = ["pyarrow", "avro"] }
datafusion-common = { git = "https://github.com/apache/arrow-datafusion.git", rev = "28.0.0-rc1", features = ["pyarrow"] }
datafusion-expr = { git = "https://github.com/apache/arrow-datafusion.git", rev = "28.0.0-rc1" }
datafusion-optimizer = { git = "https://github.com/apache/arrow-datafusion.git", rev = "28.0.0-rc1" }
datafusion-sql = { git = "https://github.com/apache/arrow-datafusion.git", rev = "28.0.0-rc1" }
datafusion-substrait = { git = "https://github.com/apache/arrow-datafusion.git", rev = "28.0.0-rc1" }
datafusion = { version = "28.0.0", features = ["pyarrow", "avro"] }
datafusion-common = { version = "28.0.0", features = ["pyarrow"] }
datafusion-expr = { version = "28.0.0" }
datafusion-optimizer = { version = "28.0.0" }
datafusion-sql = { version = "28.0.0" }
datafusion-substrait = { version = "28.0.0" }
prost = "0.11"
prost-types = "0.11"
uuid = { version = "1.3", features = ["v4"] }
Expand Down

0 comments on commit ffd1541

Please sign in to comment.