Skip to content

Commit

Permalink
chore: merge origin/main
Browse files Browse the repository at this point in the history
Signed-off-by: Zhenchi <[email protected]>
  • Loading branch information
zhongzc committed May 14, 2024
1 parent 0962afa commit 0bb5808
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/flow/src/adapter/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ impl<'s> Worker<'s> {
ctx.insert_global(*source_id, bundle);
}

let rendered = ctx.render_plan(plan.plan)?;
let rendered = ctx.render_plan(plan)?;
ctx.render_unbounded_sink(rendered, sink_sender);
}
self.task_states.insert(flow_id, cur_task_state);
Expand Down
4 changes: 2 additions & 2 deletions src/flow/src/compute/render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ impl<'referred, 'df> Context<'referred, 'df> {
reduce_plan,
} => self.render_reduce(input, key_val_plan, reduce_plan),
Plan::Join { .. } => NotImplementedSnafu {
reason: "Join is still WIP".to_string(),
reason: "Join is still WIP",
}
.fail(),
Plan::Union { .. } => NotImplementedSnafu {
reason: "Union is still WIP".to_string(),
reason: "Union is still WIP",
}
.fail(),
}
Expand Down

0 comments on commit 0bb5808

Please sign in to comment.