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

yuanzhou 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 cd2c0cca9b [GLUTEN-10766] Fix the incorrect log msg for VeloxRuntime 
(#10767)
cd2c0cca9b is described below

commit cd2c0cca9b9478a050bfbb90f15e75f99e7adcd2
Author: Jiaan Geng <[email protected]>
AuthorDate: Tue Sep 23 16:36:44 2025 +0800

    [GLUTEN-10766] Fix the incorrect log msg for VeloxRuntime (#10767)
    
    This PR proposes to fix the incorrect log msg for VeloxRuntime
    Fixes #10766
---
 cpp/velox/compute/VeloxRuntime.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cpp/velox/compute/VeloxRuntime.cc 
b/cpp/velox/compute/VeloxRuntime.cc
index e0315cf508..bc858f85c6 100644
--- a/cpp/velox/compute/VeloxRuntime.cc
+++ b/cpp/velox/compute/VeloxRuntime.cc
@@ -88,7 +88,7 @@ void VeloxRuntime::parsePlan(const uint8_t* data, int32_t 
size) {
           << std::string(50, '#') << " received substrait::Plan: " << 
taskInfo_.value() << std::endl
           << planJson;
     } catch (const std::exception& e) {
-      LOG(WARNING) << "Error converting Substrait plan to JSON: " << e.what();
+      LOG(WARNING) << "Error converting substrait::Plan to JSON: " << e.what();
     }
   }
 
@@ -106,7 +106,7 @@ void VeloxRuntime::parseSplitInfo(const uint8_t* data, 
int32_t size, int32_t spl
           << std::string(50, '#') << " received substrait::ReadRel.LocalFiles: 
" << taskInfo_.value() << std::endl
           << splitJson;
     } catch (const std::exception& e) {
-      LOG(WARNING) << "Error converting Substrait plan to JSON: " << e.what();
+      LOG(WARNING) << "Error converting substrait::ReadRel.LocalFiles to JSON: 
" << e.what();
     }
   }
   ::substrait::ReadRel_LocalFiles localFile;


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

Reply via email to