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 69fe7e73d6 [GLUTEN-11274][VELOX] Refactor Code (#11274)
69fe7e73d6 is described below

commit 69fe7e73d646a391cfefd65c835814347bf8e4b8
Author: xinghuayu007 <[email protected]>
AuthorDate: Thu Dec 11 09:16:53 2025 +0800

    [GLUTEN-11274][VELOX] Refactor Code (#11274)
---
 cpp/velox/memory/VeloxMemoryManager.cc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cpp/velox/memory/VeloxMemoryManager.cc 
b/cpp/velox/memory/VeloxMemoryManager.cc
index d5c71d78e6..010e2b4a33 100644
--- a/cpp/velox/memory/VeloxMemoryManager.cc
+++ b/cpp/velox/memory/VeloxMemoryManager.cc
@@ -161,8 +161,8 @@ class ListenableArbitrator : public 
velox::memory::MemoryArbitrator {
     // Since
     // 
https://github.com/facebookincubator/velox/pull/9557/files#diff-436e44b7374032f8f5d7eb45869602add6f955162daa2798d01cc82f8725724dL812-L820,
     // We should pass bytes as parameter "reservationBytes" when calling 
::grow.
-    auto freeByes = pool->freeBytes();
-    if (freeByes > bytes) {
+    auto freeBytes = pool->freeBytes();
+    if (freeBytes > bytes) {
       if (growPool(pool, 0, bytes)) {
         return;
       }


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

Reply via email to