This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 7daf423e98e [opt](profile) Move ExecutedByFrontend to execution summary profile #41761 (#41831) 7daf423e98e is described below commit 7daf423e98ec30fcf72841e0d22edfeeb873ec99 Author: zhiqiang <seuhezhiqi...@163.com> AuthorDate: Thu Oct 17 11:37:48 2024 +0800 [opt](profile) Move ExecutedByFrontend to execution summary profile #41761 (#41831) cherry pick from #41761 --- .../src/main/java/org/apache/doris/common/profile/SummaryProfile.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/common/profile/SummaryProfile.java b/fe/fe-core/src/main/java/org/apache/doris/common/profile/SummaryProfile.java index 98b572b67bc..00b241ed70f 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/common/profile/SummaryProfile.java +++ b/fe/fe-core/src/main/java/org/apache/doris/common/profile/SummaryProfile.java @@ -749,6 +749,6 @@ public class SummaryProfile { } public void setExecutedByFrontend(boolean executedByFrontend) { - summaryProfile.addInfoString(EXECUTED_BY_FRONTEND, String.valueOf(executedByFrontend)); + executionSummaryProfile.addInfoString(EXECUTED_BY_FRONTEND, String.valueOf(executedByFrontend)); } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org