Skip to content

Commit b561981

Browse files
dependabot[bot]lutter
authored andcommitted
build(deps): bump sqlparser from 0.59.0 to 0.60.0
Bumps [sqlparser](https://github.com/apache/datafusion-sqlparser-rs) from 0.59.0 to 0.60.0. - [Changelog](https://github.com/apache/datafusion-sqlparser-rs/blob/main/CHANGELOG.md) - [Commits](apache/datafusion-sqlparser-rs@v0.59.0...v0.60.0) --- updated-dependencies: - dependency-name: sqlparser dependency-version: 0.60.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 95ee38b commit b561981

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ serde_json = { version = "1.0", features = ["arbitrary_precision"] }
8484
serde_regex = "1.1.0"
8585
serde_yaml = "0.9.21"
8686
slog = { version = "2.8.2", features = ["release_max_level_trace", "max_level_trace"] }
87-
sqlparser = { version = "0.59.0", features = ["visitor"] }
87+
sqlparser = { version = "0.60.0", features = ["visitor"] }
8888
strum = { version = "0.26", features = ["derive"] }
8989
syn = { version = "2.0.106", features = ["full"] }
9090
test-store = { path = "./store/test-store" }

graph/src/schema/input/sqlexpr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ impl<'a> VisitExpr<'a> {
346346
use p::UnaryOperator::*;
347347
match op {
348348
Plus | Minus | Not => Ok(()),
349-
PGBitwiseNot | PGSquareRoot | PGCubeRoot | PGPostfixFactorial | PGPrefixFactorial
349+
BitwiseNot | PGSquareRoot | PGCubeRoot | PGPostfixFactorial | PGPrefixFactorial
350350
| PGAbs | BangNot | Hash | AtDashAt | DoubleAt | QuestionDash | QuestionPipe => {
351351
self.not_supported(format!("unary operator {op} is not supported"))
352352
}

store/postgres/src/sql/validation.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,7 @@ impl VisitorMut for Validator<'_> {
382382
Some(TableAlias {
383383
name: Ident::new(table.name.as_str()),
384384
columns: vec![],
385+
explicit: true,
385386
})
386387
});
387388
*table_factor = TableFactor::Derived {

0 commit comments

Comments
 (0)