Skip to content

Commit

Permalink
[IR Runtime] fix bug in filtering after intersect
Browse files Browse the repository at this point in the history
Committed-by: bingqing.lbq from Dev container
  • Loading branch information
BingqingLyu committed Nov 16, 2023
1 parent eefda74 commit cd818b8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions interactive_engine/executor/ir/core/src/plan/physical.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1089,6 +1089,9 @@ fn add_intersect_job_builder(
// add vertex filters
if let Some(mut auxilia) = auxilia {
auxilia.tag = Some(intersect_tag.clone());
if plan_meta.is_partition() {
builder.shuffle(Some(intersect_tag.clone()));
}
builder.get_v(auxilia);
}
Ok(())
Expand Down

0 comments on commit cd818b8

Please sign in to comment.