You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by as...@apache.org on 2022/03/26 15:49:47 UTC

[impala] branch master updated: IMPALA-11203: Fix build failure due to missing imports

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

asherman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git


The following commit(s) were added to refs/heads/master by this push:
     new 1fe4d2c  IMPALA-11203: Fix build failure due to missing imports
1fe4d2c is described below

commit 1fe4d2ce57afa294c2b12c06f85c69d34b461344
Author: Tamas Mate <tm...@apache.org>
AuthorDate: Fri Mar 25 18:55:10 2022 +0100

    IMPALA-11203: Fix build failure due to missing imports
    
    This commit puts back ExecutorMembershipSnapshot and AnalysisException
    imports into the Frontend class to fix the build failure.
    
    Testing:
     - Ran a clean build.
    
    Change-Id: I726748bd39936a1ddc4831c3a1e0489bd6a164f7
    Reviewed-on: http://gerrit.cloudera.org:8080/18355
    Reviewed-by: Zoltan Borok-Nagy <bo...@cloudera.com>
    Tested-by: Impala Public Jenkins <im...@cloudera.com>
---
 fe/src/main/java/org/apache/impala/service/Frontend.java | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/fe/src/main/java/org/apache/impala/service/Frontend.java b/fe/src/main/java/org/apache/impala/service/Frontend.java
index 8a75fd6..2992cee 100644
--- a/fe/src/main/java/org/apache/impala/service/Frontend.java
+++ b/fe/src/main/java/org/apache/impala/service/Frontend.java
@@ -114,6 +114,7 @@ import org.apache.impala.catalog.MetaStoreClientPool.MetaStoreClient;
 import org.apache.impala.catalog.TableLoadingException;
 import org.apache.impala.catalog.Type;
 import org.apache.impala.catalog.local.InconsistentMetadataFetchException;
+import org.apache.impala.common.AnalysisException;
 import org.apache.impala.common.FileSystemUtil;
 import org.apache.impala.common.ImpalaException;
 import org.apache.impala.common.InternalException;
@@ -187,6 +188,7 @@ import org.apache.impala.thrift.TUpdateCatalogCacheRequest;
 import org.apache.impala.thrift.TUpdateCatalogCacheResponse;
 import org.apache.impala.util.AcidUtils;
 import org.apache.impala.util.EventSequence;
+import org.apache.impala.util.ExecutorMembershipSnapshot;
 import org.apache.impala.util.IcebergUtil;
 import org.apache.impala.util.KuduUtil;
 import org.apache.impala.util.PatternMatcher;