alamb commented on a change in pull request #691:
URL: https://github.com/apache/arrow-rs/pull/691#discussion_r705493693
##########
File path: arrow/src/array/equal/list.rs
##########
@@ -138,7 +138,7 @@ pub(super) fn list_equal<T: OffsetSizeTrait>(
child_rhs_nulls.as_ref(),
lhs_offsets[lhs_start].to_usize().unwrap(),
rhs_offsets[rhs_start].to_usize().unwrap(),
- (lhs_offsets[len] - lhs_offsets[lhs_start])
+ (lhs_offsets[lhs_start + len] - lhs_offsets[lhs_start])
Review comment:
FWIW this line fixed https://github.com/apache/arrow-rs/issues/690 from
what I can tell
Edit: Actually, it fixes the integration test itself, #690 was technically
that the integration test was broken.
--
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]