Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion vortex-array/src/arrays/filter/vtable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// SPDX-FileCopyrightText: Copyright the Vortex contributors

use std::hash::Hasher;
use std::sync::Arc;

use vortex_error::VortexExpect;
use vortex_error::VortexResult;
Expand Down Expand Up @@ -146,7 +147,7 @@ impl VTable for Filter {
return Ok(ExecutionResult::done(canonical));
}
let mask_values = match &array.mask {
Mask::Values(v) => v.clone(),
Mask::Values(v) => Arc::clone(v),
_ => unreachable!("`execute_filter_fast_paths` handles AllTrue and AllFalse"),
};

Expand Down
Loading