Repository: phoenix Updated Branches: refs/heads/4.14-HBase-1.3 c4be6facc -> 3ca1fb4aa
PHOENIX-4907 - IndexScrutinyTool should use empty catalog instead of null Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/3ca1fb4a Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/3ca1fb4a Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/3ca1fb4a Branch: refs/heads/4.14-HBase-1.3 Commit: 3ca1fb4aacfc3bfad10ced707ea8fc9a93e871dc Parents: c4be6fa Author: Geoffrey <[email protected]> Authored: Mon Sep 17 16:09:44 2018 -0700 Committer: Vincent Poon <[email protected]> Committed: Wed Oct 17 11:57:02 2018 -0700 ---------------------------------------------------------------------- .../java/org/apache/phoenix/mapreduce/index/IndexScrutinyTool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/3ca1fb4a/phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexScrutinyTool.java ---------------------------------------------------------------------- diff --git a/phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexScrutinyTool.java b/phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexScrutinyTool.java index f3ff39e..d9a14bf 100644 --- a/phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexScrutinyTool.java +++ b/phoenix-core/src/main/java/org/apache/phoenix/mapreduce/index/IndexScrutinyTool.java @@ -499,7 +499,7 @@ public class IndexScrutinyTool extends Configured implements Tool { ResultSet rs = null; try { - rs = dbMetaData.getIndexInfo(null, schemaName, tableName, false, false); + rs = dbMetaData.getIndexInfo("", schemaName, tableName, false, false); while (rs.next()) { final String indexName = rs.getString(6); if (indexTable.equalsIgnoreCase(indexName)) {
