wiedld commented on code in PR #7912:
URL: https://github.com/apache/arrow-datafusion/pull/7912#discussion_r1373513149
##########
datafusion/physical-plan/src/sorts/cursor.rs:
##########
@@ -40,6 +41,13 @@ pub trait CursorValues {
/// Returns comparison of `l[l_idx]` and `r[r_idx]`
fn compare(l: &Self, l_idx: usize, r: &Self, r_idx: usize) -> Ordering;
+
+ /// Slice at a given row index, returning a new Self
+ ///
+ /// # Panics
+ ///
+ /// Panics if the slice is out of bounds, or memory is insufficient
Review Comment:
Leftover from an earlier iteration. My error. TY for catching.
--
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]