findepi commented on code in PR #7705:
URL: https://github.com/apache/arrow-rs/pull/7705#discussion_r2166007655
##########
arrow-row/src/list.rs:
##########
@@ -184,3 +184,123 @@ pub unsafe fn decode<O: OffsetSizeTrait>(
Ok(GenericListArray::from(unsafe { builder.build_unchecked() }))
}
+
+pub fn compute_lengths_fixed_size_list(
+ tracker: &mut LengthTracker,
Review Comment:
the caller used to operate on `lengths: &mut [usize]` and that's why list
helper functions have this in their API
the caller has been migrated to `tracker: &mut LengthTracker`, the helper
functions for list hasn't been updated.
if this code was inline in the caller (as for eg structs), it would operate
on `LengthTracker` directly.
--
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]