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 67f95ba commit 7151d48Copy full SHA for 7151d48
vortex-array/src/pipeline/filter/mod.rs
@@ -7,14 +7,15 @@ use vortex_compute::filter::Filter;
7
use vortex_dtype::NativePType;
8
use vortex_mask::MaskMut;
9
use vortex_vector::primitive::{PVectorMut, PrimitiveVectorMut};
10
-use vortex_vector::{VectorMut, match_each_pvector_mut};
+use vortex_vector::{match_each_pvector_mut, VectorMut};
11
12
use crate::pipeline::bit_view::BitView;
13
14
impl Filter<BitView<'_>> for &mut VectorMut {
15
type Output = ();
16
17
fn filter(self, selection: &BitView<'_>) -> Self::Output {
18
+ // TODO(ngates): replace with macro when all vectors impl filter.
19
match self {
20
VectorMut::Null(_) => {}
21
VectorMut::Bool(_) => {}
0 commit comments