This is an automated email from the ASF dual-hosted git repository. sorabh pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/drill.git
commit 006dc10a88c1708b793e3a38ac52a0266bb07deb Author: Sorabh Hamirwasia <[email protected]> AuthorDate: Wed Aug 1 13:24:04 2018 -0700 DRILL-6652: PartitionLimit changes for Lateral and Unnest Removing Ignore from TestE2EUnnestAndLateral --- .../drill/exec/physical/impl/lateraljoin/TestE2EUnnestAndLateral.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/lateraljoin/TestE2EUnnestAndLateral.java b/exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/lateraljoin/TestE2EUnnestAndLateral.java index a39d960..cc9c14a 100644 --- a/exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/lateraljoin/TestE2EUnnestAndLateral.java +++ b/exec/java-exec/src/test/java/org/apache/drill/exec/physical/impl/lateraljoin/TestE2EUnnestAndLateral.java @@ -25,7 +25,6 @@ import org.apache.drill.test.ClusterFixtureBuilder; import org.apache.drill.test.ClusterTest; import org.apache.drill.test.TestBuilder; import org.junit.BeforeClass; -import org.junit.Ignore; import org.junit.Test; import org.junit.experimental.categories.Category; @@ -178,7 +177,6 @@ public class TestE2EUnnestAndLateral extends ClusterTest { } @Test - @Ignore ("DRILL-6638") public void testUnnestWithItem() throws Exception { String sql = "select u.item from\n" + "cp.`lateraljoin/nested-customer.parquet` c," + @@ -212,7 +210,6 @@ public class TestE2EUnnestAndLateral extends ClusterTest { } @Test - @Ignore ("DRILL-6638") public void testUnnestWithMap() throws Exception { String sql = "select u.item from\n" + "cp.`lateraljoin/nested-customer.parquet` c," + @@ -231,7 +228,6 @@ public class TestE2EUnnestAndLateral extends ClusterTest { } @Test - @Ignore ("DRILL-6638") public void testMultiUnnestWithMap() throws Exception { String sql = "select u.item from\n" + "cp.`lateraljoin/nested-customer.parquet` c," +
