You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2019/01/25 15:35:30 UTC

[arrow] branch master updated: ARROW-4342: [Gandiva][Java] Ignore flaky test.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 9be9d23  ARROW-4342: [Gandiva][Java] Ignore flaky test.
9be9d23 is described below

commit 9be9d23bf467455b304eebd0555e69f5c2e3ceb4
Author: Praveen <pr...@dremio.com>
AuthorDate: Fri Jan 25 16:35:06 2019 +0100

    ARROW-4342: [Gandiva][Java] Ignore flaky test.
    
    Ignoring the flaky cache test for now.
    Once we have a better mechanism to identify objects returned by Gandiva
    we can re-enable the test.
    
    Author: Praveen <pr...@dremio.com>
    
    Closes #3485 from praveenbingo/ARROW-4342 and squashes the following commits:
    
    61a435f9 <Praveen> ARROW-4342:  Ignore flaky test.
---
 .../src/test/java/org/apache/arrow/gandiva/evaluator/ProjectorTest.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/java/gandiva/src/test/java/org/apache/arrow/gandiva/evaluator/ProjectorTest.java b/java/gandiva/src/test/java/org/apache/arrow/gandiva/evaluator/ProjectorTest.java
index 7c56f21..d333556 100644
--- a/java/gandiva/src/test/java/org/apache/arrow/gandiva/evaluator/ProjectorTest.java
+++ b/java/gandiva/src/test/java/org/apache/arrow/gandiva/evaluator/ProjectorTest.java
@@ -131,6 +131,8 @@ public class ProjectorTest extends BaseEvaluatorTest {
     executors.awaitTermination(100, java.util.concurrent.TimeUnit.SECONDS);
   }
 
+  // Will be fixed by https://issues.apache.org/jira/browse/ARROW-4371
+  @Ignore
   @Test
   public void testMakeProjector() throws GandivaException {
     Field a = Field.nullable("a", int64);