diff --git a/ballista/rust/client/Cargo.toml b/ballista/rust/client/Cargo.toml index 8644f3d740ea..bb5a6b789691 100644 --- a/ballista/rust/client/Cargo.toml +++ b/ballista/rust/client/Cargo.toml @@ -35,7 +35,7 @@ datafusion = { path = "../../../datafusion/core", version = "7.0.0" } futures = "0.3" log = "0.4" parking_lot = "0.12" -sqlparser = "0.15" +sqlparser = "0.16" tempfile = "3" tokio = "1.0" diff --git a/ballista/rust/core/Cargo.toml b/ballista/rust/core/Cargo.toml index 617003dae00c..5d5a3ab77fb6 100644 --- a/ballista/rust/core/Cargo.toml +++ b/ballista/rust/core/Cargo.toml @@ -49,7 +49,7 @@ parse_arg = "0.1.3" prost = "0.9" prost-types = "0.9" serde = { version = "1", features = ["derive"] } -sqlparser = "0.15" +sqlparser = "0.16" 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 04540ea24569..8917b8257bad 100644 --- a/datafusion/common/Cargo.toml +++ b/datafusion/common/Cargo.toml @@ -44,4 +44,4 @@ cranelift-module = { version = "0.82.0", optional = true } ordered-float = "2.10" parquet = { version = "11", features = ["arrow"], optional = true } pyo3 = { version = "0.16", optional = true } -sqlparser = "0.15" +sqlparser = "0.16" diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index f17456e3dd88..94ad25bc7dff 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -78,7 +78,7 @@ pin-project-lite= "^0.2.7" pyo3 = { version = "0.16", optional = true } rand = "0.8" smallvec = { version = "1.6", features = ["union"] } -sqlparser = "0.15" +sqlparser = "0.16" tempfile = "3" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "fs", "parking_lot"] } tokio-stream = "0.1" diff --git a/datafusion/expr/Cargo.toml b/datafusion/expr/Cargo.toml index 68b218f7f3bd..f807d4e8cf90 100644 --- a/datafusion/expr/Cargo.toml +++ b/datafusion/expr/Cargo.toml @@ -38,4 +38,4 @@ path = "src/lib.rs" ahash = { version = "0.7", default-features = false } arrow = { version = "11", features = ["prettyprint"] } datafusion-common = { path = "../common", version = "7.0.0" } -sqlparser = "0.15" +sqlparser = "0.16"