You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ay...@apache.org on 2022/09/02 10:32:29 UTC

[hive] branch master updated: HIVE-26511: Fix NoClassDefFoundError in HMS for HBaseConfiguration. (#3569). (Ayush Saxena, reviewed by Zhihua Deng and Istvan Toth)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 976102a4a02 HIVE-26511: Fix NoClassDefFoundError in HMS for HBaseConfiguration. (#3569). (Ayush Saxena, reviewed by Zhihua Deng and Istvan Toth)
976102a4a02 is described below

commit 976102a4a0216d1c027ab5155f0a25b5f00fdcf8
Author: Ayush Saxena <ay...@apache.org>
AuthorDate: Fri Sep 2 16:02:15 2022 +0530

    HIVE-26511: Fix NoClassDefFoundError in HMS for HBaseConfiguration. (#3569). (Ayush Saxena, reviewed by Zhihua Deng and Istvan Toth)
---
 bin/hive | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/hive b/bin/hive
index cceb7bc4cdf..fcd33c92cbc 100755
--- a/bin/hive
+++ b/bin/hive
@@ -101,7 +101,7 @@ if [[ "$SERVICE" == "beeline" && ! -z "$BEELINE_URL_LEGACY" ]] ; then
   SERVICE_ARGS=("${SERVICE_ARGS[@]}" "-c" "${BEELINE_URL_LEGACY}")
 fi
 
-if [[ "$SERVICE" =~ ^(help|version|orcfiledump|rcfilecat|schemaTool|cleardanglingscratchdir|metastore|beeline|llapstatus)$ ]] ; then
+if [[ "$SERVICE" =~ ^(help|version|orcfiledump|rcfilecat|schemaTool|cleardanglingscratchdir|beeline|llapstatus)$ ]] ; then
   SKIP_HBASECP=true
 fi