Repository: phoenix
Updated Branches:
  refs/heads/4.x-HBase-1.2 d30abc4b5 -> 55bccf6b0


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/55bccf6b
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/55bccf6b
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/55bccf6b

Branch: refs/heads/4.x-HBase-1.2
Commit: 55bccf6b0abdcfa211f65d943371925137dbc068
Parents: d30abc4
Author: Chinmay Kulkarni <[email protected]>
Authored: Tue Nov 13 17:11:53 2018 -0800
Committer: Thomas D'Silva <[email protected]>
Committed: Tue Nov 13 17:27:16 2018 -0800

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


http://git-wip-us.apache.org/repos/asf/phoenix/blob/55bccf6b/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