Skip to content

Commit 863149b

Browse files
committed
fix
1 parent e9d6017 commit 863149b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/PlanPostProcessors.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public List<PlanPostProcessor> getProcessors() {
6464
builder.add(new RecomputeLogicalPropertiesProcessor());
6565
builder.add(new AddOffsetIntoDistribute());
6666
builder.add(new CommonSubExpressionOpt());
67-
if (!cascadesContext.getConnectContext().getSessionVariable().pushLimitToLocalAgg) {
67+
if (cascadesContext.getConnectContext().getSessionVariable().pushLimitToLocalAgg) {
6868
builder.add(new PushLimitToLocalAgg());
6969
}
7070
// DO NOT replace PLAN NODE from here

0 commit comments

Comments
 (0)