Skip to content

Commit 873b071

Browse files
authored
Upgrade to sqlparser 0.22 (#3278)
1 parent b1db5ff commit 873b071

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

datafusion/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ ordered-float = "3.0"
4747
parquet = { version = "20.0.0", features = ["arrow"], optional = true }
4848
pyo3 = { version = "0.16", optional = true }
4949
serde_json = "1.0"
50-
sqlparser = "0.21"
50+
sqlparser = "0.22"

datafusion/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pyo3 = { version = "0.16", optional = true }
8585
rand = "0.8"
8686
rayon = { version = "1.5", optional = true }
8787
smallvec = { version = "1.6", features = ["union"] }
88-
sqlparser = "0.21"
88+
sqlparser = "0.22"
8989
tempfile = "3"
9090
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "fs", "parking_lot"] }
9191
tokio-stream = "0.1"

datafusion/expr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ path = "src/lib.rs"
3838
ahash = { version = "0.8", default-features = false, features = ["runtime-rng"] }
3939
arrow = { version = "20.0.0", features = ["prettyprint"] }
4040
datafusion-common = { path = "../common", version = "11.0.0" }
41-
sqlparser = "0.21"
41+
sqlparser = "0.22"

datafusion/sql/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ arrow = { version = "20.0.0", features = ["prettyprint"] }
4242
datafusion-common = { path = "../common", version = "11.0.0" }
4343
datafusion-expr = { path = "../expr", version = "11.0.0" }
4444
hashbrown = "0.12"
45-
sqlparser = "0.21"
45+
sqlparser = "0.22"
4646
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "fs", "parking_lot"] }

datafusion/sql/src/planner.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -567,6 +567,7 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> {
567567
| SQLDataType::UnsignedInteger(_)
568568
| SQLDataType::UnsignedBigInt(_)
569569
| SQLDataType::Datetime
570+
| SQLDataType::TimestampTz
570571
| SQLDataType::Interval
571572
| SQLDataType::Regclass
572573
| SQLDataType::String

0 commit comments

Comments
 (0)