DRILL-486: Add hbase classpath to drillbit classpath
Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/05710a66 Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/05710a66 Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/05710a66 Branch: refs/heads/master Commit: 05710a66e0249e34442de1cdc684334281842563 Parents: f8f12df Author: Steven Phillips <[email protected]> Authored: Thu Apr 3 18:44:32 2014 -0700 Committer: Jacques Nadeau <[email protected]> Committed: Sat Apr 19 21:07:00 2014 -0700 ---------------------------------------------------------------------- distribution/src/resources/drill-config.sh | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/05710a66/distribution/src/resources/drill-config.sh ---------------------------------------------------------------------- diff --git a/distribution/src/resources/drill-config.sh b/distribution/src/resources/drill-config.sh index b406112..c599a7c 100644 --- a/distribution/src/resources/drill-config.sh +++ b/distribution/src/resources/drill-config.sh @@ -111,6 +111,9 @@ CP=$DRILL_HOME/contrib/*:$CP if [ "${HADOOP_CLASSPATH}x" != "x" ]; then CP=$HADOOP_CLASSPATH:$CP fi +if [ "${HBASE_CLASSPATH}x" != "x" ]; then + CP=$HBASE_CLASSPATH:$CP +fi CP=$DRILL_CONF_DIR:$CP # Newer versions of glibc use an arena memory allocator that causes virtual
