viirya commented on a change in pull request #1506: URL: https://github.com/apache/arrow-rs/pull/1506#discussion_r837800577
########## File path: arrow/src/array/array_binary.rs ########## @@ -1020,8 +1020,17 @@ impl<'a> std::iter::Iterator for DecimalIter<'a> { } } } + + #[inline] + fn size_hint(&self) -> (usize, Option<usize>) { + let remain = self.array.len() - self.current; Review comment: ```suggestion let remain = self.current_end - self.current; ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org