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 }