Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 6E03F200CFC for ; Thu, 24 Aug 2017 00:31:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 6C51F169D04; Wed, 23 Aug 2017 22:31:40 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B3108169CFB for ; Thu, 24 Aug 2017 00:31:39 +0200 (CEST) Received: (qmail 10138 invoked by uid 500); 23 Aug 2017 22:31:38 -0000 Mailing-List: contact commits-help@phoenix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@phoenix.apache.org Delivered-To: mailing list commits@phoenix.apache.org Received: (qmail 10129 invoked by uid 99); 23 Aug 2017 22:31:38 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 Aug 2017 22:31:38 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C6A79F32AD; Wed, 23 Aug 2017 22:31:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: samarth@apache.org To: commits@phoenix.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: phoenix git commit: PHOENIX-4118 Disable tests in ImmutableIndexIT till PHOENIX-2582 is fixed Date: Wed, 23 Aug 2017 22:31:38 +0000 (UTC) archived-at: Wed, 23 Aug 2017 22:31:40 -0000 Repository: phoenix Updated Branches: refs/heads/4.x-HBase-1.1 7812fa60d -> 2b5ff6a7f 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/2b5ff6a7 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/2b5ff6a7 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/2b5ff6a7 Branch: refs/heads/4.x-HBase-1.1 Commit: 2b5ff6a7f1f3b7414e72fe3ed321b8b2db789df0 Parents: 7812fa6 Author: Samarth Jain Authored: Wed Aug 23 15:31:34 2017 -0700 Committer: Samarth Jain Committed: Wed Aug 23 15:31: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/2b5ff6a7/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);