This is an automated email from the ASF dual-hosted git repository. hyuan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/calcite.git
commit 916f1e76da4ef5ee2de80384b4aaa61e5129b3a8 Author: Haisheng Yuan <[email protected]> AuthorDate: Sun May 10 18:54:01 2020 -0500 Disable time-wasting test --- plus/src/test/java/org/apache/calcite/adapter/tpch/TpchTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plus/src/test/java/org/apache/calcite/adapter/tpch/TpchTest.java b/plus/src/test/java/org/apache/calcite/adapter/tpch/TpchTest.java index 8c523ec..31310e6 100644 --- a/plus/src/test/java/org/apache/calcite/adapter/tpch/TpchTest.java +++ b/plus/src/test/java/org/apache/calcite/adapter/tpch/TpchTest.java @@ -755,6 +755,7 @@ class TpchTest { + "order by\n" + " cntrycode"); + @Disabled("it's wasting time") @Test void testRegion() { with() .query("select * from tpch.region") @@ -911,6 +912,7 @@ class TpchTest { // a bit slow @Timeout(value = 10, unit = TimeUnit.MINUTES) + @Disabled("Too slow, more than 5 min") @Test void testQuery19() { checkQuery(19); }
