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 7cb426a commit 2ef9e09Copy full SHA for 2ef9e09
1 file changed
vortex-array/src/arrays/listview/compute/take.rs
@@ -52,7 +52,7 @@ fn apply_take(array: ArrayView<'_, ListView>, indices: &ArrayRef) -> VortexResul
52
let nullable_new_sizes = sizes.take(indices.clone())?;
53
54
// `take` returns nullable arrays; cast back to non-nullable (filling with zeros to represent
55
- // the null lists caused by null indices; the validity mask tracks nullness separately).
+ // the null lists — the validity mask tracks nullness separately).
56
let new_offsets = match_each_integer_ptype!(nullable_new_offsets.dtype().as_ptype(), |O| {
57
nullable_new_offsets.fill_null(Scalar::primitive(O::zero(), Nullability::NonNullable))?
58
});
0 commit comments