You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ja...@apache.org on 2015/09/14 07:29:02 UTC

[15/15] drill git commit: Disable TestExampleQueries.testTextPartitions() until DRILL-3774 is fixed.

Disable TestExampleQueries.testTextPartitions() until DRILL-3774 is fixed.


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/e5f529b6
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/e5f529b6
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/e5f529b6

Branch: refs/heads/master
Commit: e5f529b611d4c2a6f674e09c12078a5441b5ce10
Parents: 71086bf
Author: Jacques Nadeau <ja...@apache.org>
Authored: Sun Sep 13 19:14:26 2015 -0700
Committer: Jacques Nadeau <ja...@apache.org>
Committed: Sun Sep 13 21:58:34 2015 -0700

----------------------------------------------------------------------
 .../src/test/java/org/apache/drill/TestExampleQueries.java    | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/e5f529b6/exec/java-exec/src/test/java/org/apache/drill/TestExampleQueries.java
----------------------------------------------------------------------
diff --git a/exec/java-exec/src/test/java/org/apache/drill/TestExampleQueries.java b/exec/java-exec/src/test/java/org/apache/drill/TestExampleQueries.java
index 58c7862..e88e2b3 100644
--- a/exec/java-exec/src/test/java/org/apache/drill/TestExampleQueries.java
+++ b/exec/java-exec/src/test/java/org/apache/drill/TestExampleQueries.java
@@ -17,8 +17,11 @@
  */
 package org.apache.drill;
 
+import static org.apache.drill.TestBuilder.listOf;
 import static org.junit.Assert.assertEquals;
 
+import java.math.BigDecimal;
+
 import org.apache.drill.common.types.TypeProtos;
 import org.apache.drill.common.util.FileUtils;
 import org.apache.drill.common.util.TestTools;
@@ -26,9 +29,6 @@ import org.apache.drill.exec.ExecConstants;
 import org.junit.Ignore;
 import org.junit.Test;
 
-import java.math.BigDecimal;
-import static org.apache.drill.TestBuilder.listOf;
-
 public class TestExampleQueries extends BaseTestQuery {
 //  private static final org.slf4j.Logger logger = org.slf4j.LoggerFactory.getLogger(TestExampleQueries.class);
 
@@ -278,6 +278,7 @@ public class TestExampleQueries extends BaseTestQuery {
   }
 
   @Test
+  @Ignore("DRILL-3774")
   public void testTextPartitions() throws Exception {
     String root = FileUtils.getResourceAsFile("/store/text/data/").toURI().toString();
     String query = String.format("select * from dfs_test.`%s`", root);