This is an automated email from the ASF dual-hosted git repository. yangzhg pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
The following commit(s) were added to refs/heads/master by this push: new 9c12060 [Compile] Fix FE compile problem (#7029) 9c12060 is described below commit 9c12060db3616051359d9ac500a124cecf3c358e Author: Mingyu Chen <morningman....@gmail.com> AuthorDate: Mon Nov 8 10:35:49 2021 +0800 [Compile] Fix FE compile problem (#7029) Co-authored-by: morningman <chenmin...@baidu.com> --- .../src/main/java/org/apache/doris/common/logger/TaggableLogger.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/common/logger/TaggableLogger.java b/fe/fe-core/src/main/java/org/apache/doris/common/logger/TaggableLogger.java index 43d069a..fa98e78 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/common/logger/TaggableLogger.java +++ b/fe/fe-core/src/main/java/org/apache/doris/common/logger/TaggableLogger.java @@ -18,7 +18,7 @@ package org.apache.doris.common.logger; import org.apache.doris.common.util.DebugUtil; -import org.apache.doris.proto.PUniqueId; +import org.apache.doris.proto.Types; import org.apache.doris.thrift.TUniqueId; import org.apache.logging.log4j.Logger; @@ -57,7 +57,7 @@ public interface TaggableLogger extends Logger { return tag(TagKey.QUERY_ID, DebugUtil.printId(queryId)); } - default TaggableLogger queryId(final PUniqueId queryId) { + default TaggableLogger queryId(final Types.PUniqueId queryId) { return tag(TagKey.QUERY_ID, DebugUtil.printId(queryId)); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org