From 8bb2aa89836f2f465c6cea7dad5aed32c676ee2a Mon Sep 17 00:00:00 2001 From: Martin Traverso Date: Tue, 29 Oct 2019 16:20:50 -0700 Subject: [PATCH] Disable testLargeIn in plan determinism tester This test is inherently expensive. Running it multiple times causes build times to increased significantly. --- .../java/io/prestosql/tests/TestQueryPlanDeterminism.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/presto-tests/src/test/java/io/prestosql/tests/TestQueryPlanDeterminism.java b/presto-tests/src/test/java/io/prestosql/tests/TestQueryPlanDeterminism.java index 2b73590f9844..708aeb205689 100644 --- a/presto-tests/src/test/java/io/prestosql/tests/TestQueryPlanDeterminism.java +++ b/presto-tests/src/test/java/io/prestosql/tests/TestQueryPlanDeterminism.java @@ -23,6 +23,7 @@ import io.prestosql.testing.MaterializedResult; import io.prestosql.testing.TestingAccessControlManager; import org.intellij.lang.annotations.Language; +import org.testng.SkipException; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; @@ -269,4 +270,11 @@ public void testTpcdsQ6deterministic() " FROM lineitem j\n" + " )\n"); } + + @Override + public void testLargeIn() + { + // testLargeIn is expensive + throw new SkipException("Skipping testLargeIn"); + } }