Repository: phoenix Updated Branches: refs/heads/4.x-HBase-0.98 ab9667edc -> 892f01baa
PHOENIX-4118 Disable tests in ImmutableIndexIT till PHOENIX-2582 is fixed Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/892f01ba Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/892f01ba Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/892f01ba Branch: refs/heads/4.x-HBase-0.98 Commit: 892f01baad95a289fb78a7c58ebd7746229149b1 Parents: ab9667e Author: Samarth Jain <[email protected]> Authored: Wed Aug 23 15:30:59 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Wed Aug 23 15:30:59 2017 -0700 ---------------------------------------------------------------------- .../java/org/apache/phoenix/end2end/index/ImmutableIndexIT.java | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/892f01ba/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/ImmutableIndexIT.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/ImmutableIndexIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/ImmutableIndexIT.java index bf38c78..4c43068 100644 --- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/ImmutableIndexIT.java +++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/ImmutableIndexIT.java @@ -58,6 +58,7 @@ import org.apache.phoenix.util.ReadOnlyProps; import org.apache.phoenix.util.SchemaUtil; import org.apache.phoenix.util.TestUtil; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; @@ -155,6 +156,8 @@ public class ImmutableIndexIT extends BaseUniqueNamesOwnClusterIT { } } + // This test is know to flap. We need PHOENIX-2582 to be fixed before enabling this back. + @Ignore @Test public void testCreateIndexDuringUpsertSelect() throws Exception { // This test times out at the UPSERT SELECT call for local index @@ -255,6 +258,8 @@ public class ImmutableIndexIT extends BaseUniqueNamesOwnClusterIT { } } + // This test is know to flap. We need PHOENIX-2582 to be fixed before enabling this back. + @Ignore @Test public void testCreateIndexWhileUpsertingData() throws Exception { Properties props = PropertiesUtil.deepCopy(TEST_PROPERTIES);
