Repository: tajo
Updated Branches:
  refs/heads/branch-0.11.1 040636d03 -> 1ccd0eb49


TAJO-2025: HBASE_LIB/metrics-core-*.jar should be included in CLASSPATH.

Signed-off-by: Jinho Kim <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/tajo/repo
Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/1ccd0eb4
Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/1ccd0eb4
Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/1ccd0eb4

Branch: refs/heads/branch-0.11.1
Commit: 1ccd0eb49f06be8f386dc7f3a91a8d28416de88e
Parents: 040636d
Author: Dongkyu Hwangbo <[email protected]>
Authored: Thu Dec 17 15:03:50 2015 +0900
Committer: Jinho Kim <[email protected]>
Committed: Thu Dec 17 15:03:50 2015 +0900

----------------------------------------------------------------------
 CHANGES                     | 3 +++
 tajo-dist/src/main/bin/tajo | 4 ++++
 2 files changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tajo/blob/1ccd0eb4/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 8756d5e..933bc4d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -24,6 +24,9 @@ Release 0.11.1 - unreleased
 
   BUG FIXES
 
+    TAJO-2025: HBASE_LIB/metrics-core-*.jar should be included in CLASSPATH.
+    (Contributed by Dongkyu Hwangbo, committed by jinho)
+
     TAJO-2016: Fix storage tests hangs. (jinho)
 
     TAJO-2013: FilterPushDownRule fails due to the unsupported index. (jinho)

http://git-wip-us.apache.org/repos/asf/tajo/blob/1ccd0eb4/tajo-dist/src/main/bin/tajo
----------------------------------------------------------------------
diff --git a/tajo-dist/src/main/bin/tajo b/tajo-dist/src/main/bin/tajo
index 8dbd760..e6edf14 100755
--- a/tajo-dist/src/main/bin/tajo
+++ b/tajo-dist/src/main/bin/tajo
@@ -260,6 +260,10 @@ if [ ! -z ${HBASE_HOME} ] && [ -d ${HBASE_HOME} ] && [ -d 
${HBASE_LIB} ]; then
     CLASSPATH=${CLASSPATH}:$f;
   done
 
+  for f in ${HBASE_LIB}/metrics-core-*.jar; do
+    CLASSPATH=${CLASSPATH}:$f;
+  done
+
 fi
 
 ##############################################################################

Reply via email to