Dodothereal opened a new pull request, #23142: URL: https://github.com/apache/datafusion/pull/23142
Fixes #23080 ## Summary Removes the deprecated `DFParser::new` and `DFParser::new_with_dialect` constructors from `datafusion-sql`. Both were deprecated since 46.0.0 in favor of the `DFParserBuilder` API, and a grep across the workspace confirms zero remaining callers (the only references are to `DFParser::parse_sql` and `DFParserBuilder::new`, which we keep). With DataFusion now on 55.x, this clears the 6-major-version grace period for trivial removal. ## Test plan - `git grep -nE 'DFParser::new\b|DFParser::new_with_dialect\b'` returns no results in source or docs. - The `datafusion-sql` package's `DFParserBuilder` API surfaces (`parse_sql`, `parse_sql_with_dialect`) are unchanged and provide drop-in replacement ergonomics. AI assistance: drafted with the help of an Anthropic coding assistant. Diff was reviewed line by line before submission, and the change was verified independently. Signed-off-by: Dodothereal <[email protected]> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
