Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.4 b772b59b2 -> 4f8720b16


PHOENIX-5008 (Addendum): CQSI.init should not bubble up 
RetriableUpgradeException to client in case of an UpgradeRequiredException


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/4f8720b1
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/4f8720b1
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/4f8720b1

Branch: refs/heads/4.x-HBase-1.4
Commit: 4f8720b16e724366cd6d15fef7609a8a09e812bf
Parents: b772b59
Author: Chinmay Kulkarni <chinmayskulka...@gmail.com>
Authored: Tue Nov 13 17:11:53 2018 -0800
Committer: Thomas D'Silva <tdsi...@apache.org>
Committed: Tue Nov 13 17:27:36 2018 -0800

----------------------------------------------------------------------
 .../phoenix/end2end/SystemCatalogCreationOnConnectionIT.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/4f8720b1/phoenix-core/src/it/java/org/apache/phoenix/end2end/SystemCatalogCreationOnConnectionIT.java
----------------------------------------------------------------------
diff --git 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/SystemCatalogCreationOnConnectionIT.java
 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/SystemCatalogCreationOnConnectionIT.java
index eadd391..7a5f80c 100644
--- 
a/phoenix-core/src/it/java/org/apache/phoenix/end2end/SystemCatalogCreationOnConnectionIT.java
+++ 
b/phoenix-core/src/it/java/org/apache/phoenix/end2end/SystemCatalogCreationOnConnectionIT.java
@@ -504,7 +504,7 @@ public class SystemCatalogCreationOnConnectionIT {
      */
     private Set<String> getHBaseTables() throws IOException {
         Set<String> tables = new HashSet<>();
-        for (TableName tn : testUtil.getAdmin().listTableNames()) {
+        for (TableName tn : testUtil.getHBaseAdmin().listTableNames()) {
             tables.add(tn.getNameAsString());
         }
         return tables;

Reply via email to