TAJO-1558: HBASE_LIB/hbase-server-*.jar should be included in the CLASSPATH.
Closes #580 Signed-off-by: JaeHwa Jung <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/c1fe41a0 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/c1fe41a0 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/c1fe41a0 Branch: refs/heads/index_support Commit: c1fe41a0987fb8cc0decd6e40623c8a8725b05d0 Parents: 5264156 Author: Jongyoung Park <[email protected]> Authored: Thu May 21 20:16:04 2015 +0900 Committer: JaeHwa Jung <[email protected]> Committed: Thu May 21 20:18:00 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/c1fe41a0/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index 4b20b33..991040a 100644 --- a/CHANGES +++ b/CHANGES @@ -136,6 +136,9 @@ Release 0.11.0 - unreleased BUG FIXES + TAJO-1558: HBASE_LIB/hbase-server-*.jar should be included in the CLASSPATH. + (Contributed by Jongyoung Park, Committed by jaehwa) + TAJO-1605: Fix master build failure on jdk 1.6. (jinho) TAJO-1485: Datum 'Char' returned only 1byte. http://git-wip-us.apache.org/repos/asf/tajo/blob/c1fe41a0/tajo-dist/src/main/bin/tajo ---------------------------------------------------------------------- diff --git a/tajo-dist/src/main/bin/tajo b/tajo-dist/src/main/bin/tajo index 4383f3c..f06d6a8 100755 --- a/tajo-dist/src/main/bin/tajo +++ b/tajo-dist/src/main/bin/tajo @@ -239,6 +239,10 @@ HBASE_LIB=$HBASE_HOME/lib if [ -d ${HBASE_LIB} ]; then + for f in ${HBASE_LIB}/hbase-server-*.jar; do + CLASSPATH=${CLASSPATH}:$f; + done + for f in ${HBASE_LIB}/hbase-client-*.jar; do CLASSPATH=${CLASSPATH}:$f; done
