tustvold commented on code in PR #4376:
URL: https://github.com/apache/arrow-rs/pull/4376#discussion_r1220469934
##########
parquet/src/record/triplet.rs:
##########
@@ -295,16 +295,16 @@ impl<T: DataType> TypedTripletIter<T> {
fn read_next(&mut self) -> Result<bool> {
self.curr_triplet_index += 1;
- if self.curr_triplet_index >= self.triplets_left {
- let (values_read, levels_read) = {
+ while self.curr_triplet_index >= self.triplets_left {
Review Comment:
I hope to make it so that this change isn't necessary
--
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]