We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 463ff19 commit d6814a7Copy full SHA for d6814a7
arrow-ord/src/sort.rs
@@ -334,7 +334,8 @@ fn sort_byte_view<T: ByteViewType>(
334
335
// 3.1 Both inline (≤12 bytes): compare full 128-bit key including length
336
if len_a <= MAX_INLINE_VIEW_LEN && len_b <= MAX_INLINE_VIEW_LEN {
337
- return inline_key_fast(raw_a).cmp(&inline_key_fast(raw_b));
+ return GenericByteViewArray::<T>::inline_key_fast(raw_a)
338
+ .cmp(&GenericByteViewArray::<T>::inline_key_fast(raw_b));
339
}
340
341
// 3.2 Compare 4-byte prefix in big-endian order
0 commit comments