Skip to content

Commit c08d7c7

Browse files
committed
fix pushdown mark join to not optimize children
1 parent 1da0ccf commit c08d7c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/optimizer/pushdown/pushdown_mark_join.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ unique_ptr<LogicalOperator> FilterPushdown::PushdownMarkJoin(unique_ptr<LogicalO
7777
}
7878
op->children[0] = left_pushdown.Rewrite(move(op->children[0]));
7979
op->children[1] = right_pushdown.Rewrite(move(op->children[1]));
80-
return FinishPushdown(move(op));
80+
return FinishPushdownNoChildOptimization(move(op));
8181
}
8282

8383
} // namespace duckdb

0 commit comments

Comments
 (0)