This is an automated email from the ASF dual-hosted git repository.

agrove pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-ballista.git


The following commit(s) were added to refs/heads/master by this push:
     new 1d2d0f1c bump datafuion rev (#35)
1d2d0f1c is described below

commit 1d2d0f1cab80841188efe9a69a68601da350fc81
Author: Andy Grove <[email protected]>
AuthorDate: Sun May 22 11:33:10 2022 -0600

    bump datafuion rev (#35)
---
 ballista-cli/Cargo.toml            | 4 ++--
 ballista-examples/Cargo.toml       | 2 +-
 ballista/rust/client/Cargo.toml    | 2 +-
 ballista/rust/core/Cargo.toml      | 4 ++--
 ballista/rust/executor/Cargo.toml  | 2 +-
 ballista/rust/scheduler/Cargo.toml | 2 +-
 benchmarks/Cargo.toml              | 2 +-
 7 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/ballista-cli/Cargo.toml b/ballista-cli/Cargo.toml
index 77467ff1..ae098506 100644
--- a/ballista-cli/Cargo.toml
+++ b/ballista-cli/Cargo.toml
@@ -32,8 +32,8 @@ readme = "README.md"
 arrow = { version = "14.0.0" }
 ballista = { path = "../ballista/rust/client", version = "0.7.0" }
 clap = { version = "3", features = ["derive", "cargo"] }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
-datafusion-cli = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
+datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
+datafusion-cli = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
 dirs = "4.0.0"
 env_logger = "0.9"
 mimalloc = { version = "0.1", default-features = false }
diff --git a/ballista-examples/Cargo.toml b/ballista-examples/Cargo.toml
index 2c63b446..6a26ce73 100644
--- a/ballista-examples/Cargo.toml
+++ b/ballista-examples/Cargo.toml
@@ -36,7 +36,7 @@ required-features = ["ballista/standalone"]
 
 [dependencies]
 ballista = { path = "../ballista/rust/client", version = "0.7.0" }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
+datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
 futures = "0.3"
 num_cpus = "1.13.0"
 prost = "0.10"
diff --git a/ballista/rust/client/Cargo.toml b/ballista/rust/client/Cargo.toml
index f8d0c834..7980b432 100644
--- a/ballista/rust/client/Cargo.toml
+++ b/ballista/rust/client/Cargo.toml
@@ -32,7 +32,7 @@ ballista-core = { path = "../core", version = "0.7.0" }
 ballista-executor = { path = "../executor", version = "0.7.0", optional = true 
}
 ballista-scheduler = { path = "../scheduler", version = "0.7.0", optional = 
true }
 
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
+datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
 futures = "0.3"
 log = "0.4"
 parking_lot = "0.12"
diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml
index 9535c2ae..414335ec 100644
--- a/ballista/rust/core/Cargo.toml
+++ b/ballista/rust/core/Cargo.toml
@@ -39,8 +39,8 @@ arrow-flight = { version = "14.0.0" }
 async-trait = "0.1.41"
 chrono = { version = "0.4", default-features = false }
 clap = { version = "3", features = ["derive", "cargo"] }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
-datafusion-proto = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
+datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
+datafusion-proto = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
 futures = "0.3"
 hashbrown = "0.12"
 
diff --git a/ballista/rust/executor/Cargo.toml 
b/ballista/rust/executor/Cargo.toml
index 5ee3da26..a329a20c 100644
--- a/ballista/rust/executor/Cargo.toml
+++ b/ballista/rust/executor/Cargo.toml
@@ -40,7 +40,7 @@ async-trait = "0.1.41"
 ballista-core = { path = "../core", version = "0.7.0" }
 chrono = { version = "0.4", default-features = false }
 configure_me = "0.4.0"
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
+datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
 env_logger = "0.9"
 futures = "0.3"
 hyper = "0.14.4"
diff --git a/ballista/rust/scheduler/Cargo.toml 
b/ballista/rust/scheduler/Cargo.toml
index 39523a4f..699d4cd1 100644
--- a/ballista/rust/scheduler/Cargo.toml
+++ b/ballista/rust/scheduler/Cargo.toml
@@ -41,7 +41,7 @@ async-trait = "0.1.41"
 ballista-core = { path = "../core", version = "0.7.0" }
 clap = { version = "3", features = ["derive", "cargo"] }
 configure_me = "0.4.0"
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
+datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
 env_logger = "0.9"
 etcd-client = { version = "0.9", optional = true }
 futures = "0.3"
diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml
index f98912a5..15dfe43b 100644
--- a/benchmarks/Cargo.toml
+++ b/benchmarks/Cargo.toml
@@ -33,7 +33,7 @@ snmalloc = ["snmalloc-rs"]
 
 [dependencies]
 ballista = { path = "../ballista/rust/client" }
-datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"cb84504fed4e613c9ed18c4e2a2022c701add2d9" }
+datafusion = { git = "https://github.com/apache/arrow-datafusion";, rev = 
"844bcda2664a04685b865afe7ff159c0648d2860" }
 env_logger = "0.9"
 futures = "0.3"
 mimalloc = { version = "0.1", optional = true, default-features = false }

Reply via email to