[python] Support reading shared-shredding maps - #9763
Merged
JingsongLi merged 5 commits intoSep 13, 2026
Merged
Conversation
XiaoHongbo-Hope
marked this pull request as ready for review
September 13, 2026 04:04
JingsongLi
reviewed
Sep 13, 2026
JingsongLi
left a comment
Contributor
There was a problem hiding this comment.
Please add some E2E test cases.
Contributor
Author
Added |
Contributor
|
+1 |
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.
Purpose
PyPaimon currently exposes the physical struct when reading a
MAP<STRING, T>stored with the shared-shredding layout. Restore the complete logical map instead.Changes
none,lz4, andzstddictionary compressionARROW:schemaentry across supported PyArrow versionsTIME,TIMESTAMP, andTIMESTAMP_LTZ, including values nested in rows, arrays, and mapsSelected-key projection and shared-shredding writes are intentionally out of scope.
Tests
53 related reader tests passed locally on Python 3.11 / PyArrow 19. The seven shared-shredding tests also passed on Python 3.6 / PyArrow 6; the existing nested VARIANT reader suite passed there as well. Java-written ORC files using all three metadata compressions and TIME values were verified with both PyArrow versions. PyArrow-written ORC reader regressions cover TIME, TIMESTAMP precision, and nested TIMESTAMP_LTZ values. The projection regression covers a nested
a.boutput colliding with a complete shared-shreddinga_bcolumn. A mixed-language E2E now has Java write Parquet and ORC shared-shredding MAPs across two files, and Python verify fixed/overflow keys, null values, empty maps, null maps, and per-file dictionaries. Flake8, Spotless, shell syntax, andgit diff --checkpassed.