Skip to content

Commit 42bdc29

Browse files
committed
MaskedArray + masked compute + is_null/is_not_null
Signed-off-by: Nicholas Gates <nick@nickgates.com>
1 parent 5312315 commit 42bdc29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vortex-array/src/arrays/masked/vtable/operator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ impl OperatorVTable<MaskedVTable> for MaskedVTable {
1515
selection: Option<&ArrayRef>,
1616
ctx: &mut dyn BindCtx,
1717
) -> VortexResult<BatchKernelRef> {
18-
// A masked array performs the intersection if the mask validity with the child validity.
18+
// A masked array performs the intersection of the mask validity with the child validity.
1919
let mask = ctx.bind_validity(&array.validity, array.len(), selection)?;
2020
let child = ctx.bind(&array.child, selection)?;
2121

0 commit comments

Comments
 (0)