You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ya...@apache.org on 2020/12/18 02:20:54 UTC

[phoenix] branch 4.x updated: PHOENIX-6265 Fix GlobalIndexOptimizationIT test flapper

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

yanxinyi 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 7e98db7  PHOENIX-6265 Fix GlobalIndexOptimizationIT test flapper
7e98db7 is described below

commit 7e98db784d492754539ac7f7a4b1e61d2571a0ca
Author: Xinyi Yan <xy...@salesforce.com>
AuthorDate: Tue Dec 15 19:50:03 2020 -0800

    PHOENIX-6265 Fix GlobalIndexOptimizationIT test flapper
    
    Signed-off-by: Xinyi Yan <ya...@apache.org>
---
 .../org/apache/phoenix/end2end/index/GlobalIndexOptimizationIT.java    | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/GlobalIndexOptimizationIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/GlobalIndexOptimizationIT.java
index 0d0556b..96e83f5 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/GlobalIndexOptimizationIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/index/GlobalIndexOptimizationIT.java
@@ -27,12 +27,15 @@ import java.sql.ResultSet;
 import java.sql.SQLException;
 import java.util.regex.Pattern;
 
+import org.apache.phoenix.end2end.NeedsOwnMiniClusterTest;
 import org.apache.phoenix.end2end.ParallelStatsDisabledIT;
 import org.apache.phoenix.util.PhoenixRuntime;
 import org.apache.phoenix.util.QueryUtil;
 import org.apache.phoenix.util.SchemaUtil;
 import org.junit.Test;
+import org.junit.experimental.categories.Category;
 
+@Category(NeedsOwnMiniClusterTest.class)
 public class GlobalIndexOptimizationIT extends ParallelStatsDisabledIT {
 
     private void createBaseTable(String tableName, Integer saltBuckets, String splits, boolean multiTenant) throws SQLException {