From 27dbe23e8ab150a2d20d09b7e2fd4bb11b4d2824 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Oct 2022 17:37:50 +0000 Subject: [PATCH] Update sqlparser requirement from 0.13 to 0.25 Updates the requirements on [sqlparser](https://github.com/sqlparser-rs/sqlparser-rs) to permit the latest version. - [Release notes](https://github.com/sqlparser-rs/sqlparser-rs/releases) - [Changelog](https://github.com/sqlparser-rs/sqlparser-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/sqlparser-rs/sqlparser-rs/compare/v0.13.0...v0.25.0) --- updated-dependencies: - dependency-name: sqlparser dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ballista/rust/client/Cargo.toml | 2 +- ballista/rust/core/Cargo.toml | 2 +- datafusion/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ballista/rust/client/Cargo.toml b/ballista/rust/client/Cargo.toml index aa8297f8d06d..00780727b5e6 100644 --- a/ballista/rust/client/Cargo.toml +++ b/ballista/rust/client/Cargo.toml @@ -34,7 +34,7 @@ futures = "0.3" log = "0.4" tokio = "1.0" tempfile = "3" -sqlparser = "0.13" +sqlparser = "0.25" datafusion = { path = "../../../datafusion", version = "6.0.0" } diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index fa68be6b0ead..8332fd64d4dd 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -37,7 +37,7 @@ hashbrown = "0.12" log = "0.4" prost = "0.9" serde = {version = "1", features = ["derive"]} -sqlparser = "0.13" +sqlparser = "0.25" tokio = "1.0" tonic = "0.6" uuid = { version = "0.8", features = ["v4"] } diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 422a776448d9..253211ca3f38 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -54,7 +54,7 @@ ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.12", features = ["raw"] } arrow = { version = "8.0.0", features = ["prettyprint"] } parquet = { version = "8.0.0", features = ["arrow"] } -sqlparser = "0.13" +sqlparser = "0.25" paste = "^1.0" num_cpus = "1.13.0" chrono = { version = "0.4", default-features = false }