Repository: phoenix Updated Branches: refs/heads/master 1aff98f90 -> dd008f4fe
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/dd008f4f Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/dd008f4f Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/dd008f4f Branch: refs/heads/master Commit: dd008f4fe4e67836a6fb362843c9618e4e518182 Parents: 1aff98f Author: Samarth Jain <[email protected]> Authored: Wed Aug 23 15:30:34 2017 -0700 Committer: Samarth Jain <[email protected]> Committed: Wed Aug 23 15:30:34 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/dd008f4f/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);
