We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8b7a96 commit 8401ebeCopy full SHA for 8401ebe
arrow-row/src/radix.rs
@@ -338,7 +338,9 @@ mod tests {
338
let converter =
339
RowConverter::new(vec![SortField::new_with_options(DataType::Int32, options)])
340
.unwrap();
341
- let rows = converter.convert_columns(&[array.clone()]).unwrap();
+ let rows = converter
342
+ .convert_columns(std::slice::from_ref(&array))
343
+ .unwrap();
344
345
let indices = radix_sort_to_indices(&rows);
346
assert_sorted(&rows, &indices);
0 commit comments