Skip to content

Commit b0bd265

Browse files
committed
fix broken code
1 parent 9ca09da commit b0bd265

File tree

1 file changed

+4
-0
lines changed
  • rust/experimental/query_engine/engine-columnar/src/pipeline

1 file changed

+4
-0
lines changed

rust/experimental/query_engine/engine-columnar/src/pipeline/filter.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,7 @@ impl From<AdaptivePhysicalExprExec> for FilterExec {
562562
Self {
563563
predicate: Some(predicate),
564564
attributes_filter: None,
565+
missing_attrs_pass: false,
565566
}
566567
}
567568
}
@@ -3080,6 +3081,7 @@ mod test {
30803081
projection: FilterProjection {
30813082
schema: vec![ProjectedSchemaColumn::Root("x".into())],
30823083
},
3084+
missing_data_passes: false,
30833085
}),
30843086
);
30853087

@@ -3108,6 +3110,7 @@ mod test {
31083110
projection: FilterProjection {
31093111
schema: vec![ProjectedSchemaColumn::Root("x".into())],
31103112
},
3113+
missing_data_passes: false,
31113114
}),
31123115
);
31133116

@@ -3141,6 +3144,7 @@ mod test {
31413144
projection: FilterProjection {
31423145
schema: vec![ProjectedSchemaColumn::Root("x".into())],
31433146
},
3147+
missing_data_passes: false,
31443148
},
31453149
},
31463150
);

0 commit comments

Comments
 (0)