Skip to content

Commit

Permalink
Use latest DataFusion rev in preparation for DF 18 release (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove authored Feb 11, 2023
1 parent 35fded6 commit f7e1c21
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 49 deletions.
100 changes: 58 additions & 42 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ default = ["mimalloc"]
tokio = { version = "1.24", features = ["macros", "rt", "rt-multi-thread", "sync"] }
rand = "0.8"
pyo3 = { version = "0.18.0", features = ["extension-module", "abi3", "abi3-py37"] }
datafusion = { git="https://github.com/apache/arrow-datafusion.git", rev="a265509b272084e758b9ec21f2133856f56e617d", features = ["pyarrow", "avro"] }
datafusion-expr = { git="https://github.com/apache/arrow-datafusion.git", rev="a265509b272084e758b9ec21f2133856f56e617d" }
datafusion-optimizer = { git="https://github.com/apache/arrow-datafusion.git", rev="a265509b272084e758b9ec21f2133856f56e617d" }
datafusion-common = { git="https://github.com/apache/arrow-datafusion.git", rev="a265509b272084e758b9ec21f2133856f56e617d", features = ["pyarrow"] }
datafusion-substrait = { git="https://github.com/apache/arrow-datafusion.git", rev="a265509b272084e758b9ec21f2133856f56e617d" }
datafusion = { git="https://github.com/apache/arrow-datafusion.git", rev="8a262c3ec0a100607ae97641d7a374c847a71f20", features = ["pyarrow", "avro"] }
datafusion-expr = { git="https://github.com/apache/arrow-datafusion.git", rev="8a262c3ec0a100607ae97641d7a374c847a71f20" }
datafusion-optimizer = { git="https://github.com/apache/arrow-datafusion.git", rev="8a262c3ec0a100607ae97641d7a374c847a71f20" }
datafusion-common = { git="https://github.com/apache/arrow-datafusion.git", rev="8a262c3ec0a100607ae97641d7a374c847a71f20", features = ["pyarrow"] }
datafusion-substrait = { git="https://github.com/apache/arrow-datafusion.git", rev="8a262c3ec0a100607ae97641d7a374c847a71f20" }
uuid = { version = "1.2", features = ["v4"] }
mimalloc = { version = "*", optional = true, default-features = false }
async-trait = "0.1"
Expand Down
6 changes: 4 additions & 2 deletions src/substrait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ use pyo3::prelude::*;

use crate::context::PySessionContext;
use crate::errors::py_datafusion_err;
use crate::errors::DataFusionError;
use crate::{logical::PyLogicalPlan, utils::wait_for_future};

use crate::errors::DataFusionError;
use datafusion_substrait::{consumer, producer, serializer, substrait::proto::Plan};
use datafusion_substrait::logical_plan::{consumer, producer};
use datafusion_substrait::serializer;
use datafusion_substrait::substrait::proto::Plan;

#[pyclass(name = "plan", module = "datafusion.substrait", subclass, unsendable)]
#[derive(Debug, Clone)]
Expand Down

0 comments on commit f7e1c21

Please sign in to comment.