Uh oh!
There was an error while loading. Please reload this page.
[sql]: remove old deprecated DFParser::new and DFParser::new_with_dialect - #23101
Conversation
DFParser::new and DFParser::new_with_dialectDFParser::new and DFParser::new_with_dialectDFParser::new and DFParser::new_with_dialectThank you for opening this pull request! Reviewer note: cargo-semver-checks reported the current version number is not SemVer-compatible with the changes in this pull request (compared against the base branch). Details |
Dodothereal
commented
Jun 23, 2026
@alamb (and any other reviewer) — gentle ping: this is the latest #23080 partial removal, |
alamb
left a comment
There was a problem hiding this comment.
Thank you @megakaizo and @Dodothereal
Uh oh!
There was an error while loading. Please reload this page.
Which issue does this PR close?
Rationale for this change
DFParser::newandDFParser::new_with_dialectwere deprecated in 46.0.0 and replaced byDFParserBuilder.What changes are included in this PR?
Removed the deprecated
DFParser::newandDFParser::new_with_dialectconstructors fromdatafusion-sql.Are these changes tested?
Verified by running local tests for
datafusion-sqlpackage.Are there any user-facing changes?
Yes. This removes public Rust APIs
DFParser::newandDFParser::new_with_dialectthat were deprecated in 46.0.0. Downstream users should migrate toDFParserBuilder.This is an API change and should be labeled
api change.