Turn off invalid project push down tests until DRILL-912 is fixed.
Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/9601d833 Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/9601d833 Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/9601d833 Branch: refs/heads/master Commit: 9601d8334970dbc873edf3b13c419ae10f804410 Parents: 163219c Author: Jacques Nadeau <[email protected]> Authored: Thu Jun 5 11:09:35 2014 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Thu Jun 5 11:09:35 2014 -0700 ---------------------------------------------------------------------- .../src/test/java/org/apache/drill/TestProjectPushDown.java | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/9601d833/exec/java-exec/src/test/java/org/apache/drill/TestProjectPushDown.java ---------------------------------------------------------------------- diff --git a/exec/java-exec/src/test/java/org/apache/drill/TestProjectPushDown.java b/exec/java-exec/src/test/java/org/apache/drill/TestProjectPushDown.java index 13bb1ac..d6c92e0 100644 --- a/exec/java-exec/src/test/java/org/apache/drill/TestProjectPushDown.java +++ b/exec/java-exec/src/test/java/org/apache/drill/TestProjectPushDown.java @@ -31,6 +31,7 @@ public class TestProjectPushDown extends PlanTestBase { .getLogger(TestProjectPushDown.class); @Test + @Ignore public void testGroupBy() throws Exception { String expectedColNames = " \"columns\" : [ \"`marital_status`\" ]"; testPhysicalPlan( @@ -39,6 +40,7 @@ public class TestProjectPushDown extends PlanTestBase { } @Test + @Ignore public void testOrderBy() throws Exception { String expectedColNames = "\"columns\" : [ \"`employee_id`\", \"`full_name`\", \"`first_name`\", \"`last_name`\" ]"; testPhysicalPlan("select employee_id , full_name, first_name , last_name " @@ -47,6 +49,7 @@ public class TestProjectPushDown extends PlanTestBase { } @Test + @Ignore public void testExprInSelect() throws Exception { String expectedColNames = "\"columns\" : [ \"`employee_id`\", \"`full_name`\", \"`first_name`\", \"`last_name`\" ]"; testPhysicalPlan( @@ -56,6 +59,7 @@ public class TestProjectPushDown extends PlanTestBase { } @Test + @Ignore public void testExprInWhere() throws Exception { String expectedColNames = "\"columns\" : [ \"`employee_id`\", \"`full_name`\", \"`first_name`\", \"`last_name`\" ]"; testPhysicalPlan(
