Skip to content

Commit

Permalink
Disable testLargeIn in plan determinism tester
Browse files Browse the repository at this point in the history
This test is inherently expensive. Running it multiple times
causes build times to increased significantly.
  • Loading branch information
martint committed Oct 30, 2019
1 parent 54f54bc commit 8bb2aa8
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -269,4 +270,11 @@ public void testTpcdsQ6deterministic()
" FROM lineitem j\n" +
" )\n");
}

@Override
public void testLargeIn()
{
// testLargeIn is expensive
throw new SkipException("Skipping testLargeIn");
}
}

0 comments on commit 8bb2aa8

Please sign in to comment.