tustvold commented on code in PR #2012:
URL: https://github.com/apache/arrow-rs/pull/2012#discussion_r916718724
##########
parquet/src/file/page_index/index.rs:
##########
@@ -56,6 +56,10 @@ pub enum Index {
DOUBLE(NativeIndex<f64>),
BYTE_ARRAY(ByteArrayIndex),
FIXED_LEN_BYTE_ARRAY(ByteArrayIndex),
+ /// Sometimes reading page index from parquet file
+ /// will only return pageLocations without min_max index,
+ /// Use `EMPTY_ARRAY` representing None will be more convenient.
Review Comment:
```suggestion
/// `None` represents this lack of index information
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]