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

jackylee pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git


The following commit(s) were added to refs/heads/main by this push:
     new 31902aec7 [GLUTEN-5720][VL][FOLLOWUP] Fix invalid adding int to string 
(#6054)
31902aec7 is described below

commit 31902aec7df4550baad93ddef91a55ade7ebeb84
Author: Jacky Lee <[email protected]>
AuthorDate: Wed Jun 12 16:57:52 2024 +0800

    [GLUTEN-5720][VL][FOLLOWUP] Fix invalid adding int to string (#6054)
---
 cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc 
b/cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc
index 80509e055..8e6dd7c1c 100644
--- a/cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc
+++ b/cpp/velox/substrait/SubstraitToVeloxPlanValidator.cc
@@ -925,7 +925,7 @@ bool SubstraitToVeloxPlanValidator::validate(const 
::substrait::JoinRel& joinRel
     case ::substrait::JoinRel_JoinType_JOIN_TYPE_ANTI:
       break;
     default:
-      LOG_VALIDATION_MSG("Join type is not supported: {}" + joinRel.type());
+      LOG_VALIDATION_MSG("Join type is not supported: " + 
std::to_string(joinRel.type()));
       return false;
   }
 


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

Reply via email to