Skip to content

Commit 7151d48

Browse files
committed
Faster pipelines
Signed-off-by: Nicholas Gates <[email protected]>
1 parent 67f95ba commit 7151d48

File tree

1 file changed

+2
-1
lines changed
  • vortex-array/src/pipeline/filter

1 file changed

+2
-1
lines changed

vortex-array/src/pipeline/filter/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ use vortex_compute::filter::Filter;
77
use vortex_dtype::NativePType;
88
use vortex_mask::MaskMut;
99
use vortex_vector::primitive::{PVectorMut, PrimitiveVectorMut};
10-
use vortex_vector::{VectorMut, match_each_pvector_mut};
10+
use vortex_vector::{match_each_pvector_mut, VectorMut};
1111

1212
use crate::pipeline::bit_view::BitView;
1313

1414
impl Filter<BitView<'_>> for &mut VectorMut {
1515
type Output = ();
1616

1717
fn filter(self, selection: &BitView<'_>) -> Self::Output {
18+
// TODO(ngates): replace with macro when all vectors impl filter.
1819
match self {
1920
VectorMut::Null(_) => {}
2021
VectorMut::Bool(_) => {}

0 commit comments

Comments
 (0)