Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Sep 21, 2023
1 parent 09a1271 commit caa0c60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ public List<PlanPostProcessor> getProcessors() {
builder.add(new PushdownFilterThroughProject());
builder.add(new MergeProjectPostProcessor());
builder.add(new RecomputeLogicalPropertiesProcessor());
builder.add(new TopNScanOpt());
// after generate rf, DO NOT replace PLAN NODE
builder.add(new FragmentProcessor());
if (!cascadesContext.getConnectContext().getSessionVariable().getRuntimeFilterMode()
Expand All @@ -71,7 +72,6 @@ public List<PlanPostProcessor> getProcessors() {
}
}
builder.add(new Validator());
builder.add(new TopNScanOpt());
return builder.build();
}
}

0 comments on commit caa0c60

Please sign in to comment.