diff --git a/datafusion/common/Cargo.toml b/datafusion/common/Cargo.toml index 3337747efe37..aa57d95cf3cc 100644 --- a/datafusion/common/Cargo.toml +++ b/datafusion/common/Cargo.toml @@ -46,4 +46,4 @@ object_store = { version = "0.5.0", optional = true } ordered-float = "3.0" parquet = { version = "23.0.0", features = ["arrow"], optional = true } pyo3 = { version = "0.17.1", optional = true } -sqlparser = "0.23" +sqlparser = "0.58" diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index f5f4350b072a..40baea199e7f 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -85,7 +85,7 @@ pyo3 = { version = "0.17.1", optional = true } rand = "0.8" rayon = { version = "1.5", optional = true } smallvec = { version = "1.6", features = ["union"] } -sqlparser = "0.23" +sqlparser = "0.58" 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 6277091ed25b..993bf9221554 100644 --- a/datafusion/expr/Cargo.toml +++ b/datafusion/expr/Cargo.toml @@ -38,4 +38,4 @@ path = "src/lib.rs" ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] } arrow = { version = "23.0.0", features = ["prettyprint"] } datafusion-common = { path = "../common", version = "12.0.0" } -sqlparser = "0.23" +sqlparser = "0.58" diff --git a/datafusion/sql/Cargo.toml b/datafusion/sql/Cargo.toml index b2da631827a5..8decf90b9b3d 100644 --- a/datafusion/sql/Cargo.toml +++ b/datafusion/sql/Cargo.toml @@ -42,5 +42,5 @@ arrow = { version = "23.0.0", features = ["prettyprint"] } datafusion-common = { path = "../common", version = "12.0.0" } datafusion-expr = { path = "../expr", version = "12.0.0" } hashbrown = "0.12" -sqlparser = "0.23" +sqlparser = "0.58" tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "fs", "parking_lot"] }