This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 6ae195fdfe3 [opt](profile) Move ExecutedByFrontend to execution summary profile #41761 (#41832) 6ae195fdfe3 is described below commit 6ae195fdfe3999472968af7c07f5ecf7ace5534a Author: zhiqiang <seuhezhiqi...@163.com> AuthorDate: Thu Oct 17 11:41:06 2024 +0800 [opt](profile) Move ExecutedByFrontend to execution summary profile #41761 (#41832) cherry pick from #41761 --- .../src/main/java/org/apache/doris/common/profile/SummaryProfile.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 df4e73be048..5728f79f1e6 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 @@ -904,11 +904,11 @@ public class SummaryProfile { } public void setSystemMessage(String msg) { - summaryProfile.addInfoString(SYSTEM_MESSAGE, msg); + executionSummaryProfile.addInfoString(SYSTEM_MESSAGE, msg); } public void setExecutedByFrontend(boolean executedByFrontend) { - summaryProfile.addInfoString(EXECUTED_BY_FRONTEND, String.valueOf(executedByFrontend)); + executionSummaryProfile.addInfoString(EXECUTED_BY_FRONTEND, String.valueOf(executedByFrontend)); } public void write(DataOutput output) throws IOException { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org