This is an automated email from the ASF dual-hosted git repository.
lijibing 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 a3ec8621a44 branch-2.1: [improvement](log)Reduce stats log. #45900
(#45916)
a3ec8621a44 is described below
commit a3ec8621a44caf8f5313f016a09b78dd10bdde99
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Dec 25 16:35:08 2024 +0800
branch-2.1: [improvement](log)Reduce stats log. #45900 (#45916)
Cherry-picked from #45900
Co-authored-by: James <[email protected]>
---
.../main/java/org/apache/doris/datasource/hive/HMSExternalTable.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HMSExternalTable.java
b/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HMSExternalTable.java
index b6520116355..c6a571808ee 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HMSExternalTable.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HMSExternalTable.java
@@ -654,7 +654,9 @@ public class HMSExternalTable extends ExternalTable
implements MTMVRelatedTableI
break;
}
default:
- LOG.warn("get column stats for dlaType {} is not supported.",
dlaType);
+ if (LOG.isDebugEnabled()) {
+ LOG.debug("get column stats for dlaType {} is not
supported.", dlaType);
+ }
}
return Optional.empty();
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]