We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da0ccf commit c08d7c7Copy full SHA for c08d7c7
src/optimizer/pushdown/pushdown_mark_join.cpp
@@ -77,7 +77,7 @@ unique_ptr<LogicalOperator> FilterPushdown::PushdownMarkJoin(unique_ptr<LogicalO
77
}
78
op->children[0] = left_pushdown.Rewrite(move(op->children[0]));
79
op->children[1] = right_pushdown.Rewrite(move(op->children[1]));
80
- return FinishPushdown(move(op));
+ return FinishPushdownNoChildOptimization(move(op));
81
82
83
} // namespace duckdb
0 commit comments