Skip to content

Commit 66e17bc

Browse files
authored
[chore](log)remove unused debug log in PullUpProjectBetweenTopNAndAgg.java (#49056)
1 parent 9d4faa5 commit 66e17bc

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/PullUpProjectBetweenTopNAndAgg.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,8 @@ private Plan adjust(LogicalTopN<? extends Plan> topN) {
9292
}
9393
if (match) {
9494
if (project.getProjects().size() >= project.getInputSlots().size()) {
95-
LOG.info("$$$$ before: project.getProjects() = " + project.getProjects());
96-
LOG.info("$$$$ before: project.getInputSlots() = " + project.getInputSlots());
97-
LOG.info("$$$$ before: " + topN.treeString());
9895
topN = topN.withChildren(project.children()).withOrderKeys(newOrderKeys);
9996
project = (LogicalProject<Plan>) project.withChildren(topN);
100-
LOG.info("$$$$ after:" + project.treeString());
10197
return project;
10298
}
10399
}

0 commit comments

Comments
 (0)