From 62f562e359a84bec26d518242469f4d50694aec3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Mar 2022 08:38:13 +0000 Subject: [PATCH] Update sqlparser requirement from 0.14 to 0.15 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.14.0...v0.15.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-common/Cargo.toml | 2 +- datafusion-expr/Cargo.toml | 2 +- datafusion/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ballista/rust/client/Cargo.toml b/ballista/rust/client/Cargo.toml index b459c59716051..4e05a99c7e13b 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.14" +sqlparser = "0.15" parking_lot = "0.12" datafusion = { path = "../../../datafusion", version = "7.0.0" } diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index b59b771745785..3ae2812dafe2a 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -38,7 +38,7 @@ log = "0.4" prost = "0.9" prost-types = "0.9" serde = {version = "1", features = ["derive"]} -sqlparser = "0.14" +sqlparser = "0.15" tokio = "1.0" tonic = "0.6" uuid = { version = "0.8", features = ["v4"] } diff --git a/datafusion-common/Cargo.toml b/datafusion-common/Cargo.toml index c2caae264fe28..111bb26ca115a 100644 --- a/datafusion-common/Cargo.toml +++ b/datafusion-common/Cargo.toml @@ -42,6 +42,6 @@ arrow = { version = "10.0", features = ["prettyprint"] } parquet = { version = "10.0", features = ["arrow"], optional = true } avro-rs = { version = "0.13", features = ["snappy"], optional = true } pyo3 = { version = "0.16", optional = true } -sqlparser = "0.14" +sqlparser = "0.15" ordered-float = "2.10" cranelift-module = { version = "0.82.0", optional = true } diff --git a/datafusion-expr/Cargo.toml b/datafusion-expr/Cargo.toml index 77166513c26fd..4609d1bf9117f 100644 --- a/datafusion-expr/Cargo.toml +++ b/datafusion-expr/Cargo.toml @@ -37,5 +37,5 @@ path = "src/lib.rs" [dependencies] datafusion-common = { path = "../datafusion-common", version = "7.0.0" } arrow = { version = "10.0", features = ["prettyprint"] } -sqlparser = "0.14" +sqlparser = "0.15" ahash = { version = "0.7", default-features = false } diff --git a/datafusion/Cargo.toml b/datafusion/Cargo.toml index 3a6735fd40b6c..80842272d6135 100644 --- a/datafusion/Cargo.toml +++ b/datafusion/Cargo.toml @@ -62,7 +62,7 @@ ahash = { version = "0.7", default-features = false } hashbrown = { version = "0.12", features = ["raw"] } arrow = { version = "10.0", features = ["prettyprint"] } parquet = { version = "10.0", features = ["arrow"] } -sqlparser = "0.14" +sqlparser = "0.15" paste = "^1.0" num_cpus = "1.13.0" chrono = { version = "0.4", default-features = false }