Conversation
Pin sqlparser to the head of apache/datafusion-sqlparser-rs (0821cbdd5cbdc27f9c7205466d357deef632c936) and update DataFusion for the AST changes, to validate the upcoming 0.63.0 release. See apache/datafusion-sqlparser-rs#2453
sqlparser now lists the [NOT] JSON alternatives in the expected-token error message after IS
Pin to the head of the release PR (apache/datafusion-sqlparser-rs#2481), which includes the version bump to 0.63.0 plus two AST changes merged since the previous pin: - LIKE / ILIKE / SIMILAR TO escape_char is now Option<Box<Expr>>; DataFusion still only accepts a single-character string literal - New MergeAction::DoNothing variant, rejected with a not implemented error
Picks up sqlparser_derive 0.6.0 and the source-order function clause visitor change (apache/datafusion-sqlparser-rs#2477)
# Conflicts: # datafusion/sql/src/unparser/expr.rs
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #25278 +/- ##
==========================================
- Coverage 81.90% 81.90% -0.01%
==========================================
Files 1134 1134
Lines 425200 425246 +46
Branches 425200 425246 +46
==========================================
+ Hits 348268 348294 +26
- Misses 56291 56309 +18
- Partials 20641 20643 +2 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Which issue does this PR close?
0.63.0around 2026-08-31 datafusion-sqlparser-rs#2453Rationale for this change
sqlparser0.63.0 has been released (changelog), so update DataFusion to use it.This PR is based on the testing PR #24926
What changes are included in this PR?
sqlparserto 0.63.0Are these changes tested?
Yes, by existing CI (including sqllogictests). #24926 ran the same code changes against the pre-release
sqlparser.Are there any user-facing changes?
Updated
sqlparserversion. Error messages for a few unsupported syntax cases have changed slightly (see updated test indatafusion/sql/tests/cases/params.rs).