-
Notifications
You must be signed in to change notification settings - Fork 128
Unify Table representations #1256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
timsaucer
merged 37 commits into
apache:main
from
timsaucer:tsaucer/table-provider-recommendations
Oct 11, 2025
Merged
Changes from 36 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
9b4f144
Migrate Table → TableProvider; refactor registration and access, update
kosiew 3da3f93
Refactors and bug fixes around TableProvider registration and
kosiew 512442b
TableProvider refactor & PyDataFrame integration
kosiew a8275dc
Normalize & simplify TableProvider/DataFrame registration; add
kosiew 00bd445
refactor: update documentation for DataFrame to Table Provider conver…
kosiew 6869919
refactor: replace to_view_provider with inner_df for DataFrame access
kosiew 6e46d43
refactor: streamline TableProvider creation from DataFrame by consoli…
kosiew 38af2b5
Merge branch 'main' into table-provider-1239
kosiew 1872a7f
fix ruff errors
kosiew 5948fb4
refactor: enhance autoapi_skip_member_fn to skip private variables an…
kosiew b9851d8
revert main 49.0.0 md
kosiew 586c2cf
refactor: add comment in autoapi_skip_member_fn
kosiew d4ff136
refactor: remove isort and ruff comments to clean up import section
kosiew 29203c6
docs: enhance docstring for DataFrame.into_view method to clarify usa…
kosiew ae8c1dd
docs: update example in DataFrame.into_view docstring for clarity
kosiew 0c5eb17
docs: update example for registering Delta Lake tables to simplify usage
kosiew f9a3a22
docs: update table provider documentation for clarity and deprecate o…
kosiew f930181
docs: update documentation to reflect removal of TableProvider and us…
kosiew afc9b4e
remove TableProvider in Python, update missing_exports function, doc
kosiew 918b1ce
Fix Ruff errors
kosiew 93f0a31
Refactor test_table_loading to use Table instead of TableProvider
kosiew 7bc303d
Refactor aggregate tests to simplify result assertions and improve re…
kosiew 4429614
Add comments to clarify table normalization in aggregate tests
kosiew 38bb25a
Initial implementation of unified table suggestion
timsaucer 49abaeb
update unit tests
timsaucer cb7a755
Change documentation to be more user oriented
timsaucer 937d39c
Update ffi examples
timsaucer c70968f
Update documentation
timsaucer 90b3cb6
More documentation
timsaucer 25d4141
Make documentation more user facing
timsaucer 29b634e
More documentation updates
timsaucer 20099d2
remove cruft
timsaucer c82d617
merge main
timsaucer 9964b7f
fix ordering
timsaucer 81b46cb
give read_table the same treatment
timsaucer 36084a0
Reuse Table constructor to idenfity non-ffi tables when using udtf
timsaucer a50c1c6
Merge main into tsaucer/table-provider-recommendations
timsaucer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kosiew Here is the unit test for
read_table
with a PyCapsule based table provider.