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:41 UTC

[phoenix] branch master 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 master
in repository https://gitbox.apache.org/repos/asf/phoenix.git


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

commit a55851140ae04823bc2967c90fe35c6600b4d582
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 5e72888..7d86eba 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
@@ -64,6 +64,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;
@@ -74,6 +75,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 {