You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by vj...@apache.org on 2021/07/23 15:00:13 UTC

[phoenix] branch 4.x updated: PHOENIX-6476 (ADDENDUM) Index tool when verifying from index to data doesn't correctly split page into tasks (#1274)

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

vjasani 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 a681594  PHOENIX-6476 (ADDENDUM) Index tool when verifying from index to data doesn't correctly split page into tasks (#1274)
a681594 is described below

commit a681594ed5fc203fcf971b64a6dcfe3de935179f
Author: tkhurana <kh...@gmail.com>
AuthorDate: Fri Jul 23 08:00:01 2021 -0700

    PHOENIX-6476 (ADDENDUM) Index tool when verifying from index to data doesn't correctly split page into tasks (#1274)
---
 .../java/org/apache/phoenix/coprocessor/IndexRepairRegionScanner.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRepairRegionScanner.java b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRepairRegionScanner.java
index 5bcf652..2a918a4 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRepairRegionScanner.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRepairRegionScanner.java
@@ -33,7 +33,6 @@ import java.util.Set;
 import java.util.TreeMap;
 import java.util.TreeSet;
 
-import org.apache.curator.shaded.com.google.common.collect.Lists;
 import org.apache.hadoop.hbase.Cell;
 import org.apache.hadoop.hbase.CellUtil;
 import org.apache.hadoop.hbase.HConstants;
@@ -65,6 +64,7 @@ import org.apache.phoenix.util.ServerUtil;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
+import com.google.common.collect.Lists;
 import com.google.common.collect.Maps;
 
 /**