diff --git a/ballista/rust/client/Cargo.toml b/ballista/rust/client/Cargo.toml index dda7630506c8..312230751a84 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 6181d731a071..bd3385122dec 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.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 bed6fa8f9bc0..6863f205fd32 100644 --- a/datafusion-common/Cargo.toml +++ b/datafusion-common/Cargo.toml @@ -42,6 +42,6 @@ arrow = { version = "9.1", 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 } -sqlparser = "0.14" +sqlparser = "0.15" ordered-float = "2.10" cranelift-module = { version = "0.81.1", optional = true } diff --git a/datafusion-expr/Cargo.toml b/datafusion-expr/Cargo.toml index c611ba09537b..c42dbf5f4285 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 = "9.1", 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 38883040291f..c3dfbcfd4e78 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 = "9.1", features = ["prettyprint"] } parquet = { version = "9.1", features = ["arrow"] } -sqlparser = "0.14" +sqlparser = "0.15" paste = "^1.0" num_cpus = "1.13.0" chrono = { version = "0.4", default-features = false }