From 37869a6798bd6496b8b0861fcab4c7d4a15d63d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Feb 2023 17:10:27 +0000 Subject: [PATCH] Update arrow-schema requirement from 32.0.0 to 33.0.0 Updates the requirements on [arrow-schema](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/compare/32.0.0...33.0.0) --- updated-dependencies: - dependency-name: arrow-schema dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- datafusion-examples/Cargo.toml | 2 +- datafusion/physical-expr/Cargo.toml | 2 +- datafusion/sql/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/datafusion-examples/Cargo.toml b/datafusion-examples/Cargo.toml index cb3d3e738d128..678c88ed08e25 100644 --- a/datafusion-examples/Cargo.toml +++ b/datafusion-examples/Cargo.toml @@ -36,7 +36,7 @@ required-features = ["datafusion/avro"] [dev-dependencies] arrow = "32.0.0" arrow-flight = { version = "32.0.0", features = ["flight-sql-experimental"] } -arrow-schema = "32.0.0" +arrow-schema = "33.0.0" async-trait = "0.1.41" dashmap = "5.4" datafusion = { path = "../datafusion/core" } diff --git a/datafusion/physical-expr/Cargo.toml b/datafusion/physical-expr/Cargo.toml index 69c91a625ea84..3424e654b91d8 100644 --- a/datafusion/physical-expr/Cargo.toml +++ b/datafusion/physical-expr/Cargo.toml @@ -45,7 +45,7 @@ unicode_expressions = ["unicode-segmentation"] ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] } arrow = { version = "32.0.0", features = ["prettyprint"] } arrow-buffer = "32.0.0" -arrow-schema = "32.0.0" +arrow-schema = "33.0.0" blake2 = { version = "^0.10.2", optional = true } blake3 = { version = "1.0", optional = true } chrono = { version = "0.4.23", default-features = false } diff --git a/datafusion/sql/Cargo.toml b/datafusion/sql/Cargo.toml index 3f9057d56f49b..1f3647fdbd0de 100644 --- a/datafusion/sql/Cargo.toml +++ b/datafusion/sql/Cargo.toml @@ -37,7 +37,7 @@ default = ["unicode_expressions"] unicode_expressions = [] [dependencies] -arrow-schema = "32.0.0" +arrow-schema = "33.0.0" datafusion-common = { path = "../common", version = "17.0.0" } datafusion-expr = { path = "../expr", version = "17.0.0" } log = "^0.4"