build(deps): update sqlparser requirement from 0.62 to 0.63 - #19
dependabot[bot] wants to merge 1 commit into
Conversation
Updates the requirements on [sqlparser](https://github.com/apache/datafusion-sqlparser-rs) to permit the latest version. - [Changelog](https://github.com/apache/datafusion-sqlparser-rs/blob/main/CHANGELOG.md) - [Commits](apache/datafusion-sqlparser-rs@v0.62.0...v0.63.0) --- updated-dependencies: - dependency-name: sqlparser dependency-version: 0.63.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
|
@dependabot rebase |
|
Looks like this PR is already up-to-date with main! If you'd still like to recreate it from scratch, overwriting any edits, you can request |
Supersedes #19, which is the bare manifest bump and does not compile. 0.63 adds AST variants and reshapes the MERGE update clause. New `Statement` variants, all DDL/admin with no data lineage, added to the `StatementType::Other` list: `CreateTextSearch`, `AlterTextSearch`, `CreateFileFormat`, `CreateWarehouse`, `Put`. `Expr::IsJson` joins the other `IS <predicate>` arms and recurses into its operand, so `SELECT a FROM t WHERE b IS JSON` still sees `b`. `TableFactor::UnpivotExpr` (Redshift SUPER unpivoting) joins the pivot-family factors that carry no table reference of their own. `MergeAction::DoNothing` joins `Delete` as a no-lineage clause. `MergeUpdateExpr.assignments` became `kind: MergeUpdateKind`, which is either `Set(assignments)` — the previous behavior — or `Wildcard`, the new `UPDATE SET *`. 0.63 also adds `MergeInsertKind::Wildcard` for `INSERT *`; that one compiles silently because the arm was an `if let`, so it would have dropped lineage without a word. Both wildcards mean "every column of the source row", so both now emit the same `Star` node `SELECT *` emits: an honest unexpanded star without a catalog, the source's real columns with one. `MergeInsertKind::Row` (`INSERT ROW`) means the same thing and is also dropped, but it predates 0.63 and is left alone here; the `if let` became a `match` so the gap is at least visible. No dialects were added or removed in 0.63, so `Dialect` is unchanged. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Supersedes #19, which is the bare manifest bump and does not compile. 0.63 adds AST variants and reshapes the MERGE update clause. New `Statement` variants, all DDL/admin with no data lineage, added to the `StatementType::Other` list: `CreateTextSearch`, `AlterTextSearch`, `CreateFileFormat`, `CreateWarehouse`, `Put`. `Expr::IsJson` joins the other `IS <predicate>` arms and recurses into its operand, so `SELECT a FROM t WHERE b IS JSON` still sees `b`. `TableFactor::UnpivotExpr` (Redshift SUPER unpivoting) joins the pivot-family factors that carry no table reference of their own. `MergeAction::DoNothing` joins `Delete` as a no-lineage clause. `MergeUpdateExpr.assignments` became `kind: MergeUpdateKind`, which is either `Set(assignments)` — the previous behavior — or `Wildcard`, the new `UPDATE SET *`. 0.63 also adds `MergeInsertKind::Wildcard` for `INSERT *`; that one compiles silently because the arm was an `if let`, so it would have dropped lineage without a word. Both wildcards mean "every column of the source row", so both now emit the same `Star` node `SELECT *` emits: an honest unexpanded star without a catalog, the source's real columns with one. `MergeInsertKind::Row` (`INSERT ROW`) means the same thing and is also dropped, but it predates 0.63 and is left alone here; the `if let` became a `match` so the gap is at least visible. No dialects were added or removed in 0.63, so `Dialect` is unchanged. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
|
Superseded by #22, which carries this bump plus the source changes 0.63 requires — the bare manifest bump does not compile. |
|
OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting If you change your mind, just re-open this PR and I'll resolve any conflicts on it. |
Updates the requirements on sqlparser to permit the latest version.
Commits
85b1a6fchore: Bump version to 0.63.0 and add changelog (#2481)dc8f0c4Update sqlparser_derive to syn 3.0 (#2483)16cd393Visit function clauses in source order (#2477)eb61422Databricks: enable query and nested type syntax (#2478)bd0f36fParse expression-valued LIKE ESCAPE clauses (#2476)5c974ddAdd recursion checks for parse_data_type (#2411)f68211bParse PostgreSQL MERGE DO NOTHING actions (#2468)66bc6b3Apply recursion limit without std (#2465)cbade61Visit CreateView name as a relation (#2442)0821cbdPreserve numeric compound field access display (#2463)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)