You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by hy...@apache.org on 2020/05/02 17:28:39 UTC

[calcite] branch master updated: Disable TpcdsTest.testTableCount()

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


The following commit(s) were added to refs/heads/master by this push:
     new d6cc11b  Disable TpcdsTest.testTableCount()
d6cc11b is described below

commit d6cc11b51962a38893ffa9e28b826600be289b8f
Author: Haisheng Yuan <h....@alibaba-inc.com>
AuthorDate: Sat May 2 11:55:45 2020 -0500

    Disable TpcdsTest.testTableCount()
    
    93b8349 disabled this test, 0061b2a enabled it again. But only turns out it is
    a waste of time.
---
 plus/src/test/java/org/apache/calcite/adapter/tpcds/TpcdsTest.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/plus/src/test/java/org/apache/calcite/adapter/tpcds/TpcdsTest.java b/plus/src/test/java/org/apache/calcite/adapter/tpcds/TpcdsTest.java
index 083a1aa..a1bee69 100644
--- a/plus/src/test/java/org/apache/calcite/adapter/tpcds/TpcdsTest.java
+++ b/plus/src/test/java/org/apache/calcite/adapter/tpcds/TpcdsTest.java
@@ -165,6 +165,7 @@ class TpcdsTest {
     with().query("select * from tpcds.call_center").returnsUnordered(strings);
   }
 
+  @Disabled("it's wasting time to count each time")
   @Test void testTableCount() {
     final CalciteAssert.AssertThat with = with();
     foo(with, "CALL_CENTER", 6);