Use LevelHistogram
throughout Parquet metadata
#6134
Labels
enhancement
Any new improvement worthy of a entry in the changelog
parquet
Changes to the parquet crate
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
Related to #6129. #6105 added a new
LevelHistogram
struct to represent histograms recently added to the spec. There remain places where this histogram data is still represented with aVec<i64>
.Describe the solution you'd like
Replace the remaining bare vectors (in
PageIndex
andColumnIndexBuilder
with the new struct.Describe alternatives you've considered
The vectors in
ColumnIndexBuilder
could be left as is since they are closer to the thrift representation, but I think it's cleaner for all level histograms outside actual thrift structs to share the same interface.Additional context
See #6105 (comment)
The text was updated successfully, but these errors were encountered: