Skip to content

Commit 89ceaf1

Browse files
committed
Address PR feedback.
1 parent f9a4c41 commit 89ceaf1

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

arrow-row/src/radix.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ pub fn radix_sort_to_indices(rows: &Rows) -> Vec<u32> {
9393
let n = rows.num_rows();
9494
let mut indices: Vec<u32> = (0..n as u32).collect();
9595
let mut temp = vec![0u32; n];
96-
let mut bytes = vec![0u8; n];
97-
msd_radix_sort(&mut indices, &mut temp, &mut bytes, rows, 0, true);
96+
msd_radix_sort(&mut indices, &mut temp, rows, 0, true);
9897
indices
9998
}
10099

0 commit comments

Comments
 (0)