This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/master by this push:
new 0aa5f27 pin arrow crate to >=5.2,<6 (#869)
0aa5f27 is described below
commit 0aa5f27bc4501dda114cf925f85c8e3c76e33007
Author: QP Hou <[email protected]>
AuthorDate: Wed Aug 18 04:27:59 2021 -0700
pin arrow crate to >=5.2,<6 (#869)
* pin arrow crate to >=5.2,<6
we need parquet string stats fix in 5.2 to help generate correct parquet
files in benchmark runs
* pin arrow-flight version to ^5.2
---
ballista-examples/Cargo.toml | 2 +-
ballista/rust/core/Cargo.toml | 2 +-
ballista/rust/executor/Cargo.toml | 4 ++--
datafusion-cli/Cargo.toml | 2 +-
datafusion-examples/Cargo.toml | 2 +-
datafusion/Cargo.toml | 4 ++--
6 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/ballista-examples/Cargo.toml b/ballista-examples/Cargo.toml
index 50b5eec..1b578bf 100644
--- a/ballista-examples/Cargo.toml
+++ b/ballista-examples/Cargo.toml
@@ -28,7 +28,7 @@ edition = "2018"
publish = false
[dependencies]
-arrow-flight = { version = "5.0" }
+arrow-flight = { version = "^5.2" }
datafusion = { path = "../datafusion" }
ballista = { path = "../ballista/rust/client" }
prost = "0.8"
diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml
index 99f38b7..3d3e045 100644
--- a/ballista/rust/core/Cargo.toml
+++ b/ballista/rust/core/Cargo.toml
@@ -42,7 +42,7 @@ tokio = "1.0"
tonic = "0.5"
uuid = { version = "0.8", features = ["v4"] }
-arrow-flight = { version = "5.0" }
+arrow-flight = { version = "^5.2" }
datafusion = { path = "../../../datafusion", version = "5.1.0" }
diff --git a/ballista/rust/executor/Cargo.toml
b/ballista/rust/executor/Cargo.toml
index 9e14a51..795b8dd 100644
--- a/ballista/rust/executor/Cargo.toml
+++ b/ballista/rust/executor/Cargo.toml
@@ -29,8 +29,8 @@ edition = "2018"
snmalloc = ["snmalloc-rs"]
[dependencies]
-arrow = { version = "5.0" }
-arrow-flight = { version = "5.0" }
+arrow = { version = "^5.2" }
+arrow-flight = { version = "^5.2" }
anyhow = "1"
async-trait = "0.1.36"
ballista-core = { path = "../core", version = "0.6.0" }
diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml
index e9e3300..2788587 100644
--- a/datafusion-cli/Cargo.toml
+++ b/datafusion-cli/Cargo.toml
@@ -31,5 +31,5 @@ clap = "2.33"
rustyline = "8.0"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread",
"sync"] }
datafusion = { path = "../datafusion", version = "5.1.0" }
+arrow = { version = "^5.2" }
ballista = { path = "../ballista/rust/client", version = "0.6.0" }
-arrow = { version = "5.0" }
diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml
index 3ddcdf4..1f4f74d 100644
--- a/datafusion-examples/Cargo.toml
+++ b/datafusion-examples/Cargo.toml
@@ -29,7 +29,7 @@ publish = false
[dev-dependencies]
-arrow-flight = { version = "5.0" }
+arrow-flight = { version = "^5.2" }
datafusion = { path = "../datafusion" }
prost = "0.8"
tonic = "0.5"
diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml
index db950c4..b845307 100644
--- a/datafusion/Cargo.toml
+++ b/datafusion/Cargo.toml
@@ -49,8 +49,8 @@ force_hash_collisions = []
[dependencies]
ahash = "0.7"
hashbrown = { version = "0.11", features = ["raw"] }
-arrow = { version = "5.1", features = ["prettyprint"] }
-parquet = { version = "5.1", features = ["arrow"] }
+arrow = { version = "^5.2", features = ["prettyprint"] }
+parquet = { version = "^5.2", features = ["arrow"] }
sqlparser = "0.9.0"
paste = "^1.0"
num_cpus = "1.13.0"