Skip to content

Commit cd28d95

Browse files
committed
fix[fuzz]: apply mask to validity in baseline
Signed-off-by: Joe Isaacs <[email protected]>
1 parent 3cc048e commit cd28d95

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

fuzz/src/array/mask.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
// SPDX-License-Identifier: Apache-2.0
22
// SPDX-FileCopyrightText: Copyright the Vortex contributors
33

4-
use std::ops::Not;
54
use std::sync::Arc;
65

76
use vortex_array::arrays::{
87
BoolArray, DecimalArray, ExtensionArray, FixedSizeListArray, ListViewArray, PrimitiveArray,
98
StructArray, VarBinViewArray,
109
};
11-
use vortex_array::validity::Validity;
1210
use vortex_array::vtable::ValidityHelper;
13-
use vortex_array::{ArrayRef, Canonical, IntoArray, ToCanonical};
11+
use vortex_array::{ArrayRef, Canonical, IntoArray};
1412
use vortex_dtype::{ExtDType, match_each_decimal_value_type};
1513
use vortex_error::{VortexResult, VortexUnwrap};
16-
use vortex_mask::{AllOr, Mask};
14+
use vortex_mask::Mask;
1715

1816
/// Apply mask on the canonical form of the array to get a consistent baseline.
1917
/// This implementation manually applies the mask to each canonical type

0 commit comments

Comments
 (0)