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

felixybw 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 2bc255ca0f [CORE] Fix `ColumnarBatches#select` incorrect comments 
description (#11011)
2bc255ca0f is described below

commit 2bc255ca0f2f4836b79019cc189e10fa565d3383
Author: Terry Wang <[email protected]>
AuthorDate: Wed Nov 5 09:41:52 2025 +0800

    [CORE] Fix `ColumnarBatches#select` incorrect comments description (#11011)
    
    After multiple rounds of development iterations, the comments of 
ColumanrBatches#select is not consistent with the behavior, which may 
misleading developers.
---
 .../main/java/org/apache/gluten/columnarbatch/ColumnarBatches.java   | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 
a/gluten-arrow/src/main/java/org/apache/gluten/columnarbatch/ColumnarBatches.java
 
b/gluten-arrow/src/main/java/org/apache/gluten/columnarbatch/ColumnarBatches.java
index 01ceb7d20c..78cbc98ec4 100644
--- 
a/gluten-arrow/src/main/java/org/apache/gluten/columnarbatch/ColumnarBatches.java
+++ 
b/gluten-arrow/src/main/java/org/apache/gluten/columnarbatch/ColumnarBatches.java
@@ -106,10 +106,7 @@ public final class ColumnarBatches {
     return identifyBatchType(batch) == BatchType.ZERO_COLUMN;
   }
 
-  /**
-   * This method will always return a velox based ColumnarBatch. This method 
will close the input
-   * column batch.
-   */
+  /** This method will always return a velox based ColumnarBatch. */
   public static ColumnarBatch select(String backendName, ColumnarBatch batch, 
int[] columnIndices) {
     final Runtime runtime = Runtimes.contextInstance(backendName, 
"ColumnarBatches#select");
     switch (identifyBatchType(batch)) {


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

Reply via email to