You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ka...@apache.org on 2020/01/16 04:10:22 UTC

[phoenix] branch 4.x-HBase-1.3 updated: PHOENIX-5674 IndexTool to not write already correct index rows/CFs (addendum)

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

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


The following commit(s) were added to refs/heads/4.x-HBase-1.3 by this push:
     new 9323f93  PHOENIX-5674 IndexTool to not write already correct index rows/CFs (addendum)
9323f93 is described below

commit 9323f93c3cf94d26e1dc42850cb048af73aa5984
Author: Kadir <ko...@salesforce.com>
AuthorDate: Wed Jan 15 19:42:26 2020 -0800

    PHOENIX-5674 IndexTool to not write already correct index rows/CFs (addendum)
---
 .../java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java
index b62b215..7f85812 100644
--- a/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java
+++ b/phoenix-core/src/main/java/org/apache/phoenix/coprocessor/IndexRebuildRegionScanner.java
@@ -187,6 +187,7 @@ public class IndexRebuildRegionScanner extends BaseRegionScanner {
         innerScanner.close();
         if (verify) {
             this.pool.stop("IndexRebuildRegionScanner is closing");
+            hTableFactory.shutdown();
             indexHTable.close();
             outputHTable.close();
         }