This is an automated email from the ASF dual-hosted git repository.

englefly pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 46d5e4914fd [Fix](Nereids) change log level of warning of converting 
error to debug (#29660)
46d5e4914fd is described below

commit 46d5e4914fdcd61ad347662465f1f28884c00446
Author: LiBinfeng <[email protected]>
AuthorDate: Mon Jan 8 16:56:28 2024 +0800

    [Fix](Nereids) change log level of warning of converting error to debug 
(#29660)
    
    Co-authored-by: libinfeng <[email protected]>
---
 .../src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java 
b/fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java
index 168ee50c55c..b1a889d1734 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java
@@ -569,7 +569,7 @@ public class TypeCoercionUtils {
                 }
             }
         } catch (Exception e) {
-            LOG.warn("convert '{}' to type {} failed", value, dataType);
+            LOG.debug("convert '{}' to type {} failed", value, dataType);
         }
         return Optional.ofNullable(ret);
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to