Skip to content

Commit ff21366

Browse files
authored
fix lint on develop (#7346)
Fix semantic merge conflict from develop Signed-off-by: Andrew Duffy <andrew@a10y.dev>
1 parent cdebcdc commit ff21366

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

vortex-array/src/arrays/filter/vtable.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
// SPDX-FileCopyrightText: Copyright the Vortex contributors
33

44
use std::hash::Hasher;
5+
use std::sync::Arc;
56

67
use vortex_error::VortexExpect;
78
use vortex_error::VortexResult;
@@ -146,7 +147,7 @@ impl VTable for Filter {
146147
return Ok(ExecutionResult::done(canonical));
147148
}
148149
let mask_values = match &array.mask {
149-
Mask::Values(v) => v.clone(),
150+
Mask::Values(v) => Arc::clone(v),
150151
_ => unreachable!("`execute_filter_fast_paths` handles AllTrue and AllFalse"),
151152
};
152153

0 commit comments

Comments
 (0)