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 e9d6017 commit 863149bCopy full SHA for 863149b
fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/PlanPostProcessors.java
@@ -64,7 +64,7 @@ public List<PlanPostProcessor> getProcessors() {
64
builder.add(new RecomputeLogicalPropertiesProcessor());
65
builder.add(new AddOffsetIntoDistribute());
66
builder.add(new CommonSubExpressionOpt());
67
- if (!cascadesContext.getConnectContext().getSessionVariable().pushLimitToLocalAgg) {
+ if (cascadesContext.getConnectContext().getSessionVariable().pushLimitToLocalAgg) {
68
builder.add(new PushLimitToLocalAgg());
69
}
70
// DO NOT replace PLAN NODE from here
0 commit comments