tustvold commented on code in PR #2924:
URL: https://github.com/apache/arrow-rs/pull/2924#discussion_r1004931406
##########
parquet/src/arrow/arrow_reader/selection.rs:
##########
@@ -455,11 +455,27 @@ mod tests {
RowSelector::select(2),
RowSelector::skip(1),
RowSelector::select(1),
- RowSelector::skip(4)
+ RowSelector::skip(4),
]
);
}
+ #[test]
+ fn test_and_2() {
Review Comment:
The test output should be
```
RowSelector::select(3),
RowSelector::skip(33),
RowSelector::select(3),
RowSelector::skip(33),
```
Although it is worth noting that the b selection is a little bit odd as it
covers a range larger than that selected by a? b is a selection of the 6 rows
already selected by a
--
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]