You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by st...@apache.org on 2020/10/25 09:50:12 UTC

[phoenix] branch 4.x updated: PHOENIX-6197 AggregateIT and StoreNullsIT hangs (addendum: switch StoreNullsIT to NeedsOwnMiniClusterTest)

This is an automated email from the ASF dual-hosted git repository.

stoty pushed a commit to branch 4.x
in repository https://gitbox.apache.org/repos/asf/phoenix.git


The following commit(s) were added to refs/heads/4.x by this push:
     new 8c5d7a8  PHOENIX-6197 AggregateIT and StoreNullsIT hangs (addendum: switch StoreNullsIT to NeedsOwnMiniClusterTest)
8c5d7a8 is described below

commit 8c5d7a8c81ea746c33b496d5d1830d2116cecd9c
Author: Richard Antal <an...@gmail.com>
AuthorDate: Sat Oct 24 23:52:25 2020 +0200

    PHOENIX-6197 AggregateIT and StoreNullsIT hangs (addendum: switch StoreNullsIT to NeedsOwnMiniClusterTest)
---
 phoenix-core/src/it/java/org/apache/phoenix/end2end/StoreNullsIT.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/StoreNullsIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/StoreNullsIT.java
index a7e62cc..c436b30 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/StoreNullsIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/StoreNullsIT.java
@@ -62,6 +62,7 @@ import org.apache.phoenix.util.TestUtil;
 import org.junit.Before;
 import org.junit.BeforeClass;
 import org.junit.Test;
+import org.junit.experimental.categories.Category;
 import org.junit.runner.RunWith;
 import org.junit.runners.Parameterized;
 import org.junit.runners.Parameterized.Parameters;
@@ -72,6 +73,7 @@ import org.junit.runners.Parameterized.Parameters;
  * functionality allows having row-level versioning (similar to how KEEP_DELETED_CELLS works), but
  * also allows permanently deleting a row.
  */
+@Category(NeedsOwnMiniClusterTest.class)
 @RunWith(Parameterized.class)
 public class StoreNullsIT extends ParallelStatsDisabledIT {