You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2019/04/26 22:02:23 UTC

[kudu] 01/02: Make HiveMetastoreConfig class public

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

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

commit bacc1f3d968db00f7e6db4988c5cc9c27981755e
Author: Hao Hao <ha...@cloudera.com>
AuthorDate: Thu Apr 25 23:03:59 2019 -0700

    Make HiveMetastoreConfig class public
    
    Commit 2c572cbd4 introduced the Java client APIs to fetch HMS integration
    configuration. This patch makes the org.apache.kudu.client.HiveMetastoreConfig
    class, which contains the Hive Metastore configuration of a Kudu cluster,
    public. So that it can be accessed from outside package, e.g. org.apache.impala.
    
    Change-Id: I6e7e9eaeba65512a2bcce6dc7f1202215f60266e
    Reviewed-on: http://gerrit.cloudera.org:8080/13128
    Reviewed-by: Todd Lipcon <to...@apache.org>
    Reviewed-by: Alexey Serbin <as...@cloudera.com>
    Tested-by: Andrew Wong <aw...@cloudera.com>
    Reviewed-by: Andrew Wong <aw...@cloudera.com>
---
 .../src/main/java/org/apache/kudu/client/HiveMetastoreConfig.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/kudu-client/src/main/java/org/apache/kudu/client/HiveMetastoreConfig.java b/java/kudu-client/src/main/java/org/apache/kudu/client/HiveMetastoreConfig.java
index cb479cd..4da7bd9 100644
--- a/java/kudu-client/src/main/java/org/apache/kudu/client/HiveMetastoreConfig.java
+++ b/java/kudu-client/src/main/java/org/apache/kudu/client/HiveMetastoreConfig.java
@@ -25,7 +25,7 @@ import org.apache.yetus.audience.InterfaceStability;
  */
 @InterfaceAudience.LimitedPrivate("Impala")
 @InterfaceStability.Unstable
-class HiveMetastoreConfig {
+public class HiveMetastoreConfig {
   private final String hiveMetastoreUris;
   private final boolean hiveMetastoreSaslEnabled;
   private final String hiveMetastoreUuid;