jackwener commented on code in PR #20310:
URL: https://github.com/apache/doris/pull/20310#discussion_r1213907156
##########
fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/logical/PushdownFilterThroughSetOperation.java:
##########
@@ -45,11 +45,11 @@ public class PushdownFilterThroughSetOperation extends
OneRewriteRuleFactory {
@Override
public Rule build() {
- return logicalFilter(logicalSetOperation()).then(filter -> {
- LogicalSetOperation setOperation = filter.child();
+ return logicalFilter(logicalSetOperation()).when(f ->
f.child().getQualifier() == Qualifier.ALL).then(f -> {
Review Comment:
Because Union will be `Agg + UnionAll`, We just need match `UnionAll` is
enough
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]