API, Core: Align offsets of field stats with Design doc / Spec#15432
Merged
huaxingao merged 1 commit intoapache:mainfrom Feb 25, 2026
Merged
API, Core: Align offsets of field stats with Design doc / Spec#15432huaxingao merged 1 commit intoapache:mainfrom
huaxingao merged 1 commit intoapache:mainfrom
Conversation
nastra
commented
Feb 24, 2026
| } | ||
|
|
||
| public static Types.StructType fieldStatsFor(Type type, int fieldId) { | ||
| public static Types.StructType fieldStatsFor(Type type, int baseFieldId) { |
Contributor
Author
There was a problem hiding this comment.
we used to always pass baseFieldId + 1 here instead of just the baseFieldId
139be61 to
87bc9cf
Compare
Fokko
approved these changes
Feb 24, 2026
huaxingao
reviewed
Feb 25, 2026
stevenzwu
reviewed
Feb 25, 2026
core/src/test/java/org/apache/iceberg/stats/TestContentStats.java
Outdated
Show resolved
Hide resolved
87bc9cf to
1c10620
Compare
1c10620 to
a1f72f2
Compare
stevenzwu
approved these changes
Feb 25, 2026
huaxingao
approved these changes
Feb 25, 2026
Contributor
|
Thanks @nastra for the PR! Thanks @Fokko @stevenzwu for the review! |
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.
This aligns the offsets in the impl with the offets mentioned in the design doc and the Spec. The offsets are starting at 1 and are describing the offset of the field ID from the base stats structure, whereas the Java impl was using the offsets based on their position (0-based) within the stats structure.