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

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new b71e71c00a GH-42224: [Java] Fix Typo in TestAceroSubstraitConsumer 
Test Method (#42225)
b71e71c00a is described below

commit b71e71c00a8bba5502f5c654c6197b413b845e90
Author: Hyunseok Seo <[email protected]>
AuthorDate: Fri Jun 21 12:49:52 2024 +0900

    GH-42224: [Java] Fix Typo in TestAceroSubstraitConsumer Test Method (#42225)
    
    
    
    ### Rationale for this change
    
    Fixes a typo causing a `NullPointerException` in the test method
    
    ### What changes are included in this PR?
    
    - Updating typo to fix Unit Test
    
    ### Are these changes tested?
    
    Yes
    
    ### Are there any user-facing changes?
    
    No.
    
    * GitHub Issue: #42224
    
    Authored-by: Hyunseok Seo <[email protected]>
    Signed-off-by: David Li <[email protected]>
---
 .../org/apache/arrow/dataset/substrait/TestAceroSubstraitConsumer.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/java/dataset/src/test/java/org/apache/arrow/dataset/substrait/TestAceroSubstraitConsumer.java
 
b/java/dataset/src/test/java/org/apache/arrow/dataset/substrait/TestAceroSubstraitConsumer.java
index 4ed41610a0..97c185d705 100644
--- 
a/java/dataset/src/test/java/org/apache/arrow/dataset/substrait/TestAceroSubstraitConsumer.java
+++ 
b/java/dataset/src/test/java/org/apache/arrow/dataset/substrait/TestAceroSubstraitConsumer.java
@@ -632,7 +632,7 @@ public class TestAceroSubstraitConsumer extends TestDataset 
{
         assertThat(sumVector.getValueIterable(), 
IsIterableContainingInOrder.contains(21, 3, 13));
         final ValueIterableVector<Text> nameVector =
             (ValueIterableVector<Text>)
-                
reader.getVectorSchemaRoot().getVector("conccat_column_a_and_b");
+                
reader.getVectorSchemaRoot().getVector("concat_column_a_and_b");
         assertThat(
             nameVector.getValueIterable(),
             IsIterableContainingInOrder.contains(

Reply via email to