chore(common): remove deprecated DFSchema type-check method (Closes #23080 - partial)#23144
Open
Dodothereal wants to merge 1 commit into
Open
Conversation
…mpatible (Closes apache#23080 - partial) The DFSchema::check_arrow_schema_type_compatible method has been deprecated since 47.0.0 and is definition-only — a grep across the workspace confirms zero remaining callers and zero public re-exports. With DataFusion now on 55.x, the 6-major-version grace period cited by the API-health policy is past due. 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. Generated-by: Anthropic Claude Signed-off-by: Dodothereal <129273127+Dodothereal@users.noreply.github.com>
|
Thank 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 |
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.
Fixes #23080
Summary
Removes
DFSchema::check_arrow_schema_type_compatible, deprecated since 47.0.0 ("This method is no longer used"). A grep across the workspace confirms zero remaining callers and zero public re-exports — the method is definition-only. The 6-major-version grace period cited by the API-health policy is past due (we are now on 55.x).Test plan
git grep -nE 'check_arrow_schema_type_compatible'returns no matches in source or docs (only the removed definition site).Schemais still imported at the top ofdfschema.rsbecause it remains in use elsewhere in the file (e.g.,qualified_schema_from_field_names, etc.).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 129273127+Dodothereal@users.noreply.github.com