From 62515e0ef8cfabef34748e083007634a974be1b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 12:21:32 +0000 Subject: [PATCH] Update arrow requirement from 9.1 to 34.0 Updates the requirements on [arrow](https://github.com/apache/arrow-rs) to permit the latest version. - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/apache/arrow-rs/commits) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ballista/rust/executor/Cargo.toml | 2 +- datafusion-cli/Cargo.toml | 2 +- datafusion-common/Cargo.toml | 2 +- datafusion-expr/Cargo.toml | 2 +- datafusion-physical-expr/Cargo.toml | 2 +- datafusion/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ballista/rust/executor/Cargo.toml b/ballista/rust/executor/Cargo.toml index 27ba56eded96..ac295ff64310 100644 --- a/ballista/rust/executor/Cargo.toml +++ b/ballista/rust/executor/Cargo.toml @@ -29,7 +29,7 @@ edition = "2018" snmalloc = ["snmalloc-rs"] [dependencies] -arrow = { version = "9.1" } +arrow = { version = "34.0" } arrow-flight = { version = "9.1" } anyhow = "1" async-trait = "0.1.36" diff --git a/datafusion-cli/Cargo.toml b/datafusion-cli/Cargo.toml index 6dae9d44e82d..9dc7f5a17ed3 100644 --- a/datafusion-cli/Cargo.toml +++ b/datafusion-cli/Cargo.toml @@ -32,7 +32,7 @@ clap = { version = "3", features = ["derive", "cargo"] } rustyline = "9.0" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "parking_lot"] } datafusion = { path = "../datafusion", version = "7.0.0" } -arrow = { version = "9.1" } +arrow = { version = "34.0" } ballista = { path = "../ballista/rust/client", version = "0.6.0", optional=true } env_logger = "0.9" mimalloc = { version = "*", default-features = false } diff --git a/datafusion-common/Cargo.toml b/datafusion-common/Cargo.toml index ff4edccbd880..07beeb3b4d47 100644 --- a/datafusion-common/Cargo.toml +++ b/datafusion-common/Cargo.toml @@ -38,7 +38,7 @@ pyarrow = ["pyo3"] jit = ["cranelift-module"] [dependencies] -arrow = { version = "9.1", features = ["prettyprint"] } +arrow = { version = "34.0", features = ["prettyprint"] } parquet = { version = "9.1", features = ["arrow"], optional = true } avro-rs = { version = "0.13", features = ["snappy"], optional = true } pyo3 = { version = "0.15", optional = true } diff --git a/datafusion-expr/Cargo.toml b/datafusion-expr/Cargo.toml index a6ad50e9790d..5959213be21d 100644 --- a/datafusion-expr/Cargo.toml +++ b/datafusion-expr/Cargo.toml @@ -36,6 +36,6 @@ path = "src/lib.rs" [dependencies] datafusion-common = { path = "../datafusion-common", version = "7.0.0" } -arrow = { version = "9.1", features = ["prettyprint"] } +arrow = { version = "34.0", features = ["prettyprint"] } sqlparser = "0.14" ahash = { version = "0.7", default-features = false } diff --git a/datafusion-physical-expr/Cargo.toml b/datafusion-physical-expr/Cargo.toml index dd2049562fb7..6f75ef5d2255 100644 --- a/datafusion-physical-expr/Cargo.toml +++ b/datafusion-physical-expr/Cargo.toml @@ -41,7 +41,7 @@ unicode_expressions = ["unicode-segmentation"] [dependencies] datafusion-common = { path = "../datafusion-common", version = "7.0.0" } datafusion-expr = { path = "../datafusion-expr", version = "7.0.0" } -arrow = { version = "9.1", features = ["prettyprint"] } +arrow = { version = "34.0", features = ["prettyprint"] } paste = "^1.0" ahash = { version = "0.7", default-features = false } ordered-float = "2.10" diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 2628c82db0bb..58fb417b13c5 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -60,7 +60,7 @@ datafusion-jit = { path = "../datafusion-jit", version = "7.0.0", optional = tru datafusion-physical-expr = { path = "../datafusion-physical-expr", version = "7.0.0" } ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.12", features = ["raw"] } -arrow = { version = "9.1", features = ["prettyprint"] } +arrow = { version = "34.0", features = ["prettyprint"] } parquet = { version = "9.1", features = ["arrow"] } sqlparser = "0.14" paste = "^1.0"