Skip to content

Commit 310c27e

Browse files
committed
Fix displaying Delta joins
1 parent 6c290c9 commit 310c27e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/compute-types/src/plan/render_plan.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -888,8 +888,8 @@ impl<'a, T> std::fmt::Display for RenderPlanExprHumanizer<'a, T> {
888888
for dpp in path_plans {
889889
if !first {
890890
write!(f, " ")?;
891-
first = false;
892891
}
892+
first = false;
893893
write!(f, "[%{}", dpp.source_relation)?;
894894

895895
for dsp in &dpp.stage_plans {

0 commit comments

Comments
 (0)