This is an automated email from the ASF dual-hosted git repository. tdsilva pushed a commit to branch 4.14-HBase-1.4 in repository https://gitbox.apache.org/repos/asf/phoenix.git
commit 75f01d937cd6207482623b7832a214d911464798 Author: Chinmay Kulkarni <chinmayskulka...@gmail.com> AuthorDate: Tue Nov 13 17:11:53 2018 -0800 PHOENIX-5008 (Addendum): CQSI.init should not bubble up RetriableUpgradeException to client in case of an UpgradeRequiredException --- .../org/apache/phoenix/end2end/SystemCatalogCreationOnConnectionIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 0cd206e..59af533 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 @@ -500,7 +500,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;