This is an automated email from the ASF dual-hosted git repository.
lijibing 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 7470fbe1e26 branch-3.0: [improvement](log)Reduce stats log. #45900
(#45915)
7470fbe1e26 is described below
commit 7470fbe1e26567f08e90c34849905853892a7684
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Dec 25 16:25:21 2024 +0800
branch-3.0: [improvement](log)Reduce stats log. #45900 (#45915)
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 da4670d6d05..aed96536975 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
@@ -647,7 +647,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]