We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8941959 commit 286ddfeCopy full SHA for 286ddfe
arrow-select/src/take.rs
@@ -689,6 +689,11 @@ fn take_fixed_size_list<IndexType: ArrowPrimitiveType>(
689
Ok(FixedSizeListArray::from(list_data))
690
}
691
692
+/// The take kernel implementation for `FixedSizeBinaryArray`.
693
+///
694
+/// The computation is done in two steps:
695
+/// - Compute the values buffer
696
+/// - Compute the null buffer
697
fn take_fixed_size_binary<IndexType: ArrowPrimitiveType>(
698
values: &FixedSizeBinaryArray,
699
indices: &PrimitiveArray<IndexType>,
0 commit comments