tustvold commented on code in PR #3578:
URL: https://github.com/apache/arrow-rs/pull/3578#discussion_r1082672397
##########
parquet/src/file/page_index/index.rs:
##########
@@ -53,14 +53,14 @@ pub enum Index {
/// will only return pageLocations without min_max index,
/// `NONE` represents this lack of index information
NONE,
- BOOLEAN(BooleanIndex),
+ BOOLEAN(NativeIndex<bool>),
INT32(NativeIndex<i32>),
INT64(NativeIndex<i64>),
INT96(NativeIndex<Int96>),
FLOAT(NativeIndex<f32>),
DOUBLE(NativeIndex<f64>),
- BYTE_ARRAY(ByteArrayIndex),
- FIXED_LEN_BYTE_ARRAY(ByteArrayIndex),
+ BYTE_ARRAY(NativeIndex<ByteArray>),
+ FIXED_LEN_BYTE_ARRAY(NativeIndex<ByteArray>),
Review Comment:
This is the breaking change
--
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]