diff options
author | demon <demon@FreeBSD.org> | 2015-04-24 23:59:14 +0800 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2015-04-24 23:59:14 +0800 |
commit | 4d75df1a941b052e39be2996a3c808cacfdad265 (patch) | |
tree | 5c64023d943063afd8c66efe5adf3e40530f537f /devel/hive | |
parent | c94bd396f66335c8a92e36848d0d7d1a75c66967 (diff) | |
download | freebsd-ports-gnome-4d75df1a941b052e39be2996a3c808cacfdad265.tar.gz freebsd-ports-gnome-4d75df1a941b052e39be2996a3c808cacfdad265.tar.zst freebsd-ports-gnome-4d75df1a941b052e39be2996a3c808cacfdad265.zip |
Update to version 1.1.0;
Provide startup scripts for Metastore service and HiveServer2.
Diffstat (limited to 'devel/hive')
-rw-r--r-- | devel/hive/Makefile | 31 | ||||
-rw-r--r-- | devel/hive/distinfo | 8 | ||||
-rw-r--r-- | devel/hive/files/hiveserver2.in | 39 | ||||
-rw-r--r-- | devel/hive/files/metastore.in | 38 | ||||
-rw-r--r-- | devel/hive/files/patch-conf-hive-env.sh.template | 19 | ||||
-rw-r--r-- | devel/hive/pkg-plist | 1378 |
6 files changed, 832 insertions, 681 deletions
diff --git a/devel/hive/Makefile b/devel/hive/Makefile index f014fe61d938..1878c1061713 100644 --- a/devel/hive/Makefile +++ b/devel/hive/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hive -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.0 CATEGORIES= devel java MASTER_SITES= ${MASTER_SITE_APACHE} \ LOCAL/demon/:maven \ @@ -25,14 +25,37 @@ USE_JAVA= yes JAVA_VERSION= 1.7+ WRKSRC= ${WRKDIR}/apache-${PORTNAME}-${PORTVERSION}-src +HIVE_USER= hive +HIVE_GROUP= hive +HIVE_LOGDIR= /var/log/hive +HIVE_RUNDIR= /var/run/hive +PLIST_SUB= HIVE_VER=${PORTVERSION} \ + HIVE_USER=${HIVE_USER} \ + HIVE_GROUP=${HIVE_GROUP} \ + HIVE_RUNDIR=${HIVE_RUNDIR} \ + HIVE_LOGDIR=${HIVE_LOGDIR} +SUB_LIST= JAVA_HOME=${JAVA_HOME} \ + HIVE_USER=${HIVE_USER} \ + HIVE_GROUP=${HIVE_GROUP} \ + HIVE_RUNDIR=${HIVE_RUNDIR} \ + HIVE_LOGDIR=${HIVE_LOGDIR} +USERS= ${HIVE_USER} +GROUPS= ${HIVE_GROUP} +USE_RC_SUBR= hiveserver2 metastore + HIVE_DIST= ${WRKSRC}/packaging/target/apache-hive-${PORTVERSION}-bin/apache-hive-${PORTVERSION}-bin +post-patch: + ${REINPLACE_CMD} -e s#%%PREFIX%%#${PREFIX}# -e s#%%LOCALBASE%%#${LOCALBASE}# ${WRKSRC}/conf/hive-env.sh.template + do-build: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${LOCALBASE}/share/java/maven3/bin/mvn -Dmaven.repo.local=${WRKDIR}/m2 --offline clean install -Phadoop-2,dist -DskipTests do-install: - ${MKDIR} ${STAGEDIR}${DATADIR} - cd ${HIVE_DIST} && ${COPYTREE_BIN} bin ${STAGEDIR}${DATADIR} - cd ${HIVE_DIST} && ${COPYTREE_SHARE} "conf examples hcatalog lib scripts" ${STAGEDIR}${DATADIR} + ${MKDIR} ${STAGEDIR}${PREFIX}/hive + cd ${HIVE_DIST} && ${COPYTREE_BIN} bin ${STAGEDIR}${PREFIX}/hive + cd ${HIVE_DIST} && ${COPYTREE_SHARE} "conf examples hcatalog lib scripts" ${STAGEDIR}${PREFIX}/hive + ${MKDIR} ${STAGEDIR}${HIVE_LOGDIR} + ${MKDIR} ${STAGEDIR}${HIVE_RUNDIR} .include <bsd.port.mk> diff --git a/devel/hive/distinfo b/devel/hive/distinfo index 2f4503f80f31..bcfdb8e20eae 100644 --- a/devel/hive/distinfo +++ b/devel/hive/distinfo @@ -1,4 +1,4 @@ -SHA256 (hadoop/apache-hive-1.0.0-src.tar.gz) = 2dae5082fc601b745a31e8a41e6982b2a4305233ff34422a54d7571b309cd98f -SIZE (hadoop/apache-hive-1.0.0-src.tar.gz) = 10883877 -SHA256 (hadoop/FreeBSD-hive-1.0.0-maven-repository.tar.gz) = 7afcb0efb4881bd217d2a05c77fbda8b143575dc9580d61e5949a42ed925a31f -SIZE (hadoop/FreeBSD-hive-1.0.0-maven-repository.tar.gz) = 304882356 +SHA256 (hadoop/apache-hive-1.1.0-src.tar.gz) = 340bdd46e305f077132c0b1b0c62a1752245ec6deac7dc87b826e716e2f5c45f +SIZE (hadoop/apache-hive-1.1.0-src.tar.gz) = 11990526 +SHA256 (hadoop/FreeBSD-hive-1.1.0-maven-repository.tar.gz) = 58e4b1f046ecd3f08949614bd86dbe1b83669a45cac0f9495e057f3497ce3835 +SIZE (hadoop/FreeBSD-hive-1.1.0-maven-repository.tar.gz) = 365563658 diff --git a/devel/hive/files/hiveserver2.in b/devel/hive/files/hiveserver2.in new file mode 100644 index 000000000000..24d8ba38cdf0 --- /dev/null +++ b/devel/hive/files/hiveserver2.in @@ -0,0 +1,39 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# PROVIDE: hiveserver2 +# REQUIRE: LOGIN metastore +# KEYWORD: shutdown +# +# hiveserver2_enable (bool): Set to NO by default. +# Set it to YES to enable HiveServer2. + +. /etc/rc.subr + +export PATH=${PATH}:%%LOCALBASE%%/bin +name=hiveserver2 +rcvar=hiveserver2_enable +pidfile=%%HIVE_RUNDIR%%/${name}.pid + +load_rc_config "${name}" + +: ${hiveserver2enable:=NO} +hiveserver2_user=%%HIVE_USER%% + +start_cmd="hiveserver2_start" +stop_cmd="hiveserver2_stop" +command="%%PREFIX%%/hive/bin/hive" + +hiveserver2_start() { + su -m %%HIVE_USER%% -c "HADOOP_OPTS=\"-Dhive.log.dir=%%HIVE_LOGDIR%% -Dhive.log.file=metastore.log -Dhive.log.threshold=INFO\" $command --service $name > %%HIVE_LOGDIR%%/$name.out 2>&1 < /dev/null & "' echo $! '"> $pidfile" +} + +hiveserver2_stop() { + rc_pid=$(check_pidfile ${pidfile} %%JAVA_HOME%%/bin/java) + if [ -n "$rc_pid" ]; then + kill $rc_pid + fi +} + +run_rc_command "$1" diff --git a/devel/hive/files/metastore.in b/devel/hive/files/metastore.in new file mode 100644 index 000000000000..9ac71cac7665 --- /dev/null +++ b/devel/hive/files/metastore.in @@ -0,0 +1,38 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# PROVIDE: metastore +# REQUIRE: LOGIN +# KEYWORD: shutdown +# +# metastore_enable (bool): Set to NO by default. +# Set it to YES to enable Hive metastore service. + +. /etc/rc.subr + +export PATH=${PATH}:%%LOCALBASE%%/bin +name=metastore +rcvar=metastore_enable +pidfile=%%HIVE_RUNDIR%%/${name}.pid + +load_rc_config "${name}" + +: ${metastore_enable:=NO} + +start_cmd="metastore_start" +stop_cmd="metastore_stop" +command="%%PREFIX%%/hive/bin/hive" + +metastore_start() { + su -m %%HIVE_USER%% -c "HADOOP_OPTS=\"-Dhive.log.dir=%%HIVE_LOGDIR%% -Dhive.log.file=metastore.log -Dhive.log.threshold=INFO\" $command --service ${name} > %%HIVE_LOGDIR%%/$name.out 2>&1 < /dev/null & "' echo $! '"> $pidfile" +} + +metastore_stop() { + rc_pid=$(check_pidfile ${pidfile} %%JAVA_HOME%%/bin/java) + if [ -n "$rc_pid" ]; then + kill $rc_pid + fi +} + +run_rc_command "$1" diff --git a/devel/hive/files/patch-conf-hive-env.sh.template b/devel/hive/files/patch-conf-hive-env.sh.template new file mode 100644 index 000000000000..1422f4995cb6 --- /dev/null +++ b/devel/hive/files/patch-conf-hive-env.sh.template @@ -0,0 +1,19 @@ +--- conf/hive-env.sh.template.orig 2014-05-04 01:58:16.000000000 +0400 ++++ conf/hive-env.sh.template 2015-04-24 16:21:41.593157000 +0300 +@@ -45,10 +45,14 @@ + + + # Set HADOOP_HOME to point to a specific hadoop install directory +-# HADOOP_HOME=${bin}/../../hadoop ++HADOOP_HOME=%%LOCALBASE%% + + # Hive Configuration Directory can be controlled by: +-# export HIVE_CONF_DIR= ++export HIVE_CONF_DIR=%%PREFIX%%/hive/conf ++ ++# workaround for java.lang.IncompatibleClassChangeError: Found class jline.Terminal, but interface was expected ++# should be fixed in newer hive / hadoop versions. ++export HADOOP_USER_CLASSPATH_FIRST=true + + # Folder containing extra ibraries required for hive compilation/execution can be controlled by: + # export HIVE_AUX_JARS_PATH= diff --git a/devel/hive/pkg-plist b/devel/hive/pkg-plist index 8e441c4ea29b..9b13a71335d1 100644 --- a/devel/hive/pkg-plist +++ b/devel/hive/pkg-plist @@ -1,673 +1,705 @@ -%%DATADIR%%/bin/beeline -%%DATADIR%%/bin/ext/beeline.sh -%%DATADIR%%/bin/ext/cli.cmd -%%DATADIR%%/bin/ext/cli.sh -%%DATADIR%%/bin/ext/debug.cmd -%%DATADIR%%/bin/ext/debug.sh -%%DATADIR%%/bin/ext/help.cmd -%%DATADIR%%/bin/ext/help.sh -%%DATADIR%%/bin/ext/hiveburninclient.sh -%%DATADIR%%/bin/ext/hiveserver.cmd -%%DATADIR%%/bin/ext/hiveserver.sh -%%DATADIR%%/bin/ext/hiveserver2.cmd -%%DATADIR%%/bin/ext/hiveserver2.sh -%%DATADIR%%/bin/ext/hwi.cmd -%%DATADIR%%/bin/ext/hwi.sh -%%DATADIR%%/bin/ext/jar.cmd -%%DATADIR%%/bin/ext/jar.sh -%%DATADIR%%/bin/ext/lineage.cmd -%%DATADIR%%/bin/ext/lineage.sh -%%DATADIR%%/bin/ext/metastore.cmd -%%DATADIR%%/bin/ext/metastore.sh -%%DATADIR%%/bin/ext/metatool.sh -%%DATADIR%%/bin/ext/orcfiledump.cmd -%%DATADIR%%/bin/ext/orcfiledump.sh -%%DATADIR%%/bin/ext/rcfilecat.cmd -%%DATADIR%%/bin/ext/rcfilecat.sh -%%DATADIR%%/bin/ext/schemaTool.cmd -%%DATADIR%%/bin/ext/schemaTool.sh -%%DATADIR%%/bin/ext/util/execHiveCmd.cmd -%%DATADIR%%/bin/ext/util/execHiveCmd.sh -%%DATADIR%%/bin/ext/version.sh -%%DATADIR%%/bin/hive -%%DATADIR%%/bin/hive-config.sh -%%DATADIR%%/bin/hiveserver2 -%%DATADIR%%/bin/metatool -%%DATADIR%%/bin/schematool -%%DATADIR%%/conf/beeline-log4j.properties.template -%%DATADIR%%/conf/hive-default.xml.template -%%DATADIR%%/conf/hive-env.sh.template -%%DATADIR%%/conf/hive-exec-log4j.properties.template -%%DATADIR%%/conf/hive-log4j.properties.template -%%DATADIR%%/examples/files/2000_cols_data.csv -%%DATADIR%%/examples/files/ProxyAuth.res -%%DATADIR%%/examples/files/SortCol1Col2.txt -%%DATADIR%%/examples/files/SortCol2Col1.txt -%%DATADIR%%/examples/files/SortDescCol1Col2.txt -%%DATADIR%%/examples/files/SortDescCol2Col1.txt -%%DATADIR%%/examples/files/T1.txt -%%DATADIR%%/examples/files/T2.txt -%%DATADIR%%/examples/files/T3.txt -%%DATADIR%%/examples/files/UserVisits.dat -%%DATADIR%%/examples/files/agg_01-p1.txt -%%DATADIR%%/examples/files/agg_01-p2.txt -%%DATADIR%%/examples/files/agg_01-p3.txt -%%DATADIR%%/examples/files/alltypes.txt -%%DATADIR%%/examples/files/alltypes2.txt -%%DATADIR%%/examples/files/apache.access.2.log -%%DATADIR%%/examples/files/apache.access.log -%%DATADIR%%/examples/files/archive_corrupt.rc -%%DATADIR%%/examples/files/array_table.txt -%%DATADIR%%/examples/files/avro_charvarchar.txt -%%DATADIR%%/examples/files/binary.txt -%%DATADIR%%/examples/files/bool.txt -%%DATADIR%%/examples/files/bool_literal.txt -%%DATADIR%%/examples/files/cbo_t1.txt -%%DATADIR%%/examples/files/cbo_t2.txt -%%DATADIR%%/examples/files/cbo_t3.txt -%%DATADIR%%/examples/files/cbo_t4.txt -%%DATADIR%%/examples/files/cbo_t5.txt -%%DATADIR%%/examples/files/cbo_t6.txt -%%DATADIR%%/examples/files/char_varchar_udf.txt -%%DATADIR%%/examples/files/complex.seq -%%DATADIR%%/examples/files/covar_tab.txt -%%DATADIR%%/examples/files/create_nested_type.txt -%%DATADIR%%/examples/files/csv.txt -%%DATADIR%%/examples/files/customer_address.txt -%%DATADIR%%/examples/files/data_with_escape.txt -%%DATADIR%%/examples/files/datatypes.txt -%%DATADIR%%/examples/files/dec.avro -%%DATADIR%%/examples/files/dec.parq -%%DATADIR%%/examples/files/dec.txt -%%DATADIR%%/examples/files/dec_comp.txt -%%DATADIR%%/examples/files/decimal.txt -%%DATADIR%%/examples/files/decimal_10_0.txt -%%DATADIR%%/examples/files/dept.txt -%%DATADIR%%/examples/files/dim-data.txt -%%DATADIR%%/examples/files/dim_shops.txt -%%DATADIR%%/examples/files/doctors.avro -%%DATADIR%%/examples/files/docurl.txt -%%DATADIR%%/examples/files/double.txt -%%DATADIR%%/examples/files/dynpart_test.txt -%%DATADIR%%/examples/files/emp.txt -%%DATADIR%%/examples/files/employee.dat -%%DATADIR%%/examples/files/employee2.dat -%%DATADIR%%/examples/files/employee_part.txt -%%DATADIR%%/examples/files/empty1.txt -%%DATADIR%%/examples/files/empty2.txt -%%DATADIR%%/examples/files/episodes.avro -%%DATADIR%%/examples/files/escapetest.txt -%%DATADIR%%/examples/files/extrapolate_stats_full.txt -%%DATADIR%%/examples/files/extrapolate_stats_partial.txt -%%DATADIR%%/examples/files/fact-data.txt -%%DATADIR%%/examples/files/flights_join.txt -%%DATADIR%%/examples/files/flights_tiny.txt -%%DATADIR%%/examples/files/flights_tiny.txt.1 -%%DATADIR%%/examples/files/futurama_episodes.avro -%%DATADIR%%/examples/files/groupby_groupingid.txt -%%DATADIR%%/examples/files/grouping_sets.txt -%%DATADIR%%/examples/files/grouping_sets1.txt -%%DATADIR%%/examples/files/grouping_sets2.txt -%%DATADIR%%/examples/files/hive_626_bar.txt -%%DATADIR%%/examples/files/hive_626_count.txt -%%DATADIR%%/examples/files/hive_626_foo.txt -%%DATADIR%%/examples/files/in1.txt -%%DATADIR%%/examples/files/in2.txt -%%DATADIR%%/examples/files/in3.txt -%%DATADIR%%/examples/files/in4.txt -%%DATADIR%%/examples/files/in5.txt -%%DATADIR%%/examples/files/in6.txt -%%DATADIR%%/examples/files/in7.txt -%%DATADIR%%/examples/files/in8.txt -%%DATADIR%%/examples/files/in9.txt -%%DATADIR%%/examples/files/in_file.dat -%%DATADIR%%/examples/files/infer_const_type.txt -%%DATADIR%%/examples/files/input.txt -%%DATADIR%%/examples/files/int.txt -%%DATADIR%%/examples/files/json.txt -%%DATADIR%%/examples/files/keystore.jks -%%DATADIR%%/examples/files/kv1.seq -%%DATADIR%%/examples/files/kv1.string-sorted.txt -%%DATADIR%%/examples/files/kv1.txt -%%DATADIR%%/examples/files/kv1.val.sorted.txt -%%DATADIR%%/examples/files/kv10.txt -%%DATADIR%%/examples/files/kv1_broken.seq -%%DATADIR%%/examples/files/kv1_cb.txt -%%DATADIR%%/examples/files/kv1_cc.txt -%%DATADIR%%/examples/files/kv1kv2.cogroup.txt -%%DATADIR%%/examples/files/kv2.txt -%%DATADIR%%/examples/files/kv3.txt -%%DATADIR%%/examples/files/kv4.txt -%%DATADIR%%/examples/files/kv5.txt -%%DATADIR%%/examples/files/kv6.txt -%%DATADIR%%/examples/files/kv7.txt -%%DATADIR%%/examples/files/kv8.txt -%%DATADIR%%/examples/files/kv9.txt -%%DATADIR%%/examples/files/leftsemijoin_mr_t1.txt -%%DATADIR%%/examples/files/leftsemijoin_mr_t2.txt -%%DATADIR%%/examples/files/lineitem.txt -%%DATADIR%%/examples/files/loc.txt -%%DATADIR%%/examples/files/location.txt -%%DATADIR%%/examples/files/lt100.sorted.txt -%%DATADIR%%/examples/files/lt100.txt -%%DATADIR%%/examples/files/lt100.txt.deflate -%%DATADIR%%/examples/files/map_null_schema.avro -%%DATADIR%%/examples/files/map_null_val.avro -%%DATADIR%%/examples/files/map_table.txt -%%DATADIR%%/examples/files/nested_complex.txt -%%DATADIR%%/examples/files/non_ascii_tbl.txt -%%DATADIR%%/examples/files/null.txt -%%DATADIR%%/examples/files/nullfile.txt -%%DATADIR%%/examples/files/nulls.txt -%%DATADIR%%/examples/files/opencsv-data.txt -%%DATADIR%%/examples/files/orc_create.txt -%%DATADIR%%/examples/files/orc_create_people.txt -%%DATADIR%%/examples/files/orc_split_elim.orc -%%DATADIR%%/examples/files/parquet_columnar.txt -%%DATADIR%%/examples/files/parquet_create.txt -%%DATADIR%%/examples/files/parquet_partitioned.txt -%%DATADIR%%/examples/files/parquet_types.txt -%%DATADIR%%/examples/files/part.rc -%%DATADIR%%/examples/files/part.seq -%%DATADIR%%/examples/files/part_tiny.txt -%%DATADIR%%/examples/files/person age.txt -%%DATADIR%%/examples/files/person+age.txt -%%DATADIR%%/examples/files/posexplode_data.txt -%%DATADIR%%/examples/files/primitive_type_arrays.txt -%%DATADIR%%/examples/files/pw17.txt -%%DATADIR%%/examples/files/sales.txt -%%DATADIR%%/examples/files/sample-queryplan-in-history.txt -%%DATADIR%%/examples/files/sample-queryplan.txt -%%DATADIR%%/examples/files/sample.json -%%DATADIR%%/examples/files/smallsrcsortbucket1outof4.txt -%%DATADIR%%/examples/files/smallsrcsortbucket2outof4.txt -%%DATADIR%%/examples/files/smallsrcsortbucket3outof4.txt -%%DATADIR%%/examples/files/smallsrcsortbucket4outof4.txt -%%DATADIR%%/examples/files/smb_bucket_input.rc -%%DATADIR%%/examples/files/smb_bucket_input.txt -%%DATADIR%%/examples/files/smbbucket_1.rc -%%DATADIR%%/examples/files/smbbucket_1.txt -%%DATADIR%%/examples/files/smbbucket_2.rc -%%DATADIR%%/examples/files/smbbucket_2.txt -%%DATADIR%%/examples/files/smbbucket_3.rc -%%DATADIR%%/examples/files/smbbucket_3.txt -%%DATADIR%%/examples/files/sour1.txt -%%DATADIR%%/examples/files/sour2.txt -%%DATADIR%%/examples/files/source.txt -%%DATADIR%%/examples/files/srcbucket0.txt -%%DATADIR%%/examples/files/srcbucket1.txt -%%DATADIR%%/examples/files/srcbucket20.txt -%%DATADIR%%/examples/files/srcbucket21.txt -%%DATADIR%%/examples/files/srcbucket22.txt -%%DATADIR%%/examples/files/srcbucket23.txt -%%DATADIR%%/examples/files/srcsortbucket1outof4.txt -%%DATADIR%%/examples/files/srcsortbucket2outof4.txt -%%DATADIR%%/examples/files/srcsortbucket3outof4.txt -%%DATADIR%%/examples/files/srcsortbucket4outof4.txt -%%DATADIR%%/examples/files/store.txt -%%DATADIR%%/examples/files/store_sales.txt -%%DATADIR%%/examples/files/string.txt -%%DATADIR%%/examples/files/symlink1.txt -%%DATADIR%%/examples/files/symlink2.txt -%%DATADIR%%/examples/files/tbl.txt -%%DATADIR%%/examples/files/test.dat -%%DATADIR%%/examples/files/test1.txt -%%DATADIR%%/examples/files/test2.dat -%%DATADIR%%/examples/files/text-en.txt -%%DATADIR%%/examples/files/things.txt -%%DATADIR%%/examples/files/things2.txt -%%DATADIR%%/examples/files/tiny_a.txt -%%DATADIR%%/examples/files/tiny_b.txt -%%DATADIR%%/examples/files/truststore.jks -%%DATADIR%%/examples/files/union_input.txt -%%DATADIR%%/examples/files/v1.txt -%%DATADIR%%/examples/files/v2.txt -%%DATADIR%%/examples/files/vc1.txt -%%DATADIR%%/examples/files/x.txt -%%DATADIR%%/examples/files/y.txt -%%DATADIR%%/examples/files/z.txt -%%DATADIR%%/examples/queries/case_sensitivity.q -%%DATADIR%%/examples/queries/cast1.q -%%DATADIR%%/examples/queries/groupby1.q -%%DATADIR%%/examples/queries/groupby2.q -%%DATADIR%%/examples/queries/groupby3.q -%%DATADIR%%/examples/queries/groupby4.q -%%DATADIR%%/examples/queries/groupby5.q -%%DATADIR%%/examples/queries/groupby6.q -%%DATADIR%%/examples/queries/input1.q -%%DATADIR%%/examples/queries/input2.q -%%DATADIR%%/examples/queries/input20.q -%%DATADIR%%/examples/queries/input3.q -%%DATADIR%%/examples/queries/input4.q -%%DATADIR%%/examples/queries/input5.q -%%DATADIR%%/examples/queries/input6.q -%%DATADIR%%/examples/queries/input7.q -%%DATADIR%%/examples/queries/input8.q -%%DATADIR%%/examples/queries/input9.q -%%DATADIR%%/examples/queries/input_part1.q -%%DATADIR%%/examples/queries/input_testsequencefile.q -%%DATADIR%%/examples/queries/input_testxpath.q -%%DATADIR%%/examples/queries/input_testxpath2.q -%%DATADIR%%/examples/queries/join1.q -%%DATADIR%%/examples/queries/join2.q -%%DATADIR%%/examples/queries/join3.q -%%DATADIR%%/examples/queries/join4.q -%%DATADIR%%/examples/queries/join5.q -%%DATADIR%%/examples/queries/join6.q -%%DATADIR%%/examples/queries/join7.q -%%DATADIR%%/examples/queries/join8.q -%%DATADIR%%/examples/queries/sample1.q -%%DATADIR%%/examples/queries/sample2.q -%%DATADIR%%/examples/queries/sample3.q -%%DATADIR%%/examples/queries/sample4.q -%%DATADIR%%/examples/queries/sample5.q -%%DATADIR%%/examples/queries/sample6.q -%%DATADIR%%/examples/queries/sample7.q -%%DATADIR%%/examples/queries/subq.q -%%DATADIR%%/examples/queries/udf1.q -%%DATADIR%%/examples/queries/udf4.q -%%DATADIR%%/examples/queries/udf6.q -%%DATADIR%%/examples/queries/udf_case.q -%%DATADIR%%/examples/queries/udf_when.q -%%DATADIR%%/examples/queries/union.q -%%DATADIR%%/hcatalog/bin/common.sh -%%DATADIR%%/hcatalog/bin/hcat -%%DATADIR%%/hcatalog/bin/hcat.py -%%DATADIR%%/hcatalog/bin/hcatcfg.py -%%DATADIR%%/hcatalog/bin/templeton.cmd -%%DATADIR%%/hcatalog/etc/hcatalog/jndi.properties -%%DATADIR%%/hcatalog/etc/hcatalog/proto-hive-site.xml -%%DATADIR%%/hcatalog/etc/webhcat/webhcat-default.xml -%%DATADIR%%/hcatalog/etc/webhcat/webhcat-log4j.properties -%%DATADIR%%/hcatalog/libexec/hcat-config.sh -%%DATADIR%%/hcatalog/sbin/hcat_server.py -%%DATADIR%%/hcatalog/sbin/hcat_server.sh -%%DATADIR%%/hcatalog/sbin/hcatcfg.py -%%DATADIR%%/hcatalog/sbin/update-hcatalog-env.sh -%%DATADIR%%/hcatalog/sbin/webhcat_config.sh -%%DATADIR%%/hcatalog/sbin/webhcat_server.sh -%%DATADIR%%/hcatalog/share/doc/hcatalog/README.txt -%%DATADIR%%/hcatalog/share/hcatalog/hive-hcatalog-core-1.0.0.jar -%%DATADIR%%/hcatalog/share/hcatalog/hive-hcatalog-pig-adapter-1.0.0.jar -%%DATADIR%%/hcatalog/share/hcatalog/hive-hcatalog-server-extensions-1.0.0.jar -%%DATADIR%%/hcatalog/share/hcatalog/hive-hcatalog-streaming-1.0.0.jar -%%DATADIR%%/hcatalog/share/webhcat/java-client/hive-webhcat-java-client-1.0.0.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/asm-3.1.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/commons-exec-1.1.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/hive-webhcat-1.0.0.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jackson-core-asl-1.9.2.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jackson-jaxrs-1.9.2.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jackson-xc-1.9.2.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jaxb-api-2.2.2.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jaxb-impl-2.2.3-1.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jersey-core-1.14.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jersey-json-1.14.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jersey-server-1.14.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jersey-servlet-1.14.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jettison-1.1.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/jul-to-slf4j-1.7.5.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/stax-api-1.0-2.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/wadl-resourcedoc-doclet-1.4.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/xercesImpl-2.9.1.jar -%%DATADIR%%/hcatalog/share/webhcat/svr/lib/xml-apis-1.3.04.jar -%%DATADIR%%/lib/ST4-4.0.4.jar -%%DATADIR%%/lib/accumulo-core-1.6.0.jar -%%DATADIR%%/lib/accumulo-fate-1.6.0.jar -%%DATADIR%%/lib/accumulo-start-1.6.0.jar -%%DATADIR%%/lib/accumulo-trace-1.6.0.jar -%%DATADIR%%/lib/activation-1.1.jar -%%DATADIR%%/lib/ant-1.9.1.jar -%%DATADIR%%/lib/ant-launcher-1.9.1.jar -%%DATADIR%%/lib/antlr-2.7.7.jar -%%DATADIR%%/lib/antlr-runtime-3.4.jar -%%DATADIR%%/lib/asm-commons-3.1.jar -%%DATADIR%%/lib/asm-tree-3.1.jar -%%DATADIR%%/lib/avro-1.7.5.jar -%%DATADIR%%/lib/bonecp-0.8.0.RELEASE.jar -%%DATADIR%%/lib/calcite-avatica-0.9.2-incubating.jar -%%DATADIR%%/lib/calcite-core-0.9.2-incubating.jar -%%DATADIR%%/lib/commons-beanutils-1.7.0.jar -%%DATADIR%%/lib/commons-beanutils-core-1.8.0.jar -%%DATADIR%%/lib/commons-cli-1.2.jar -%%DATADIR%%/lib/commons-codec-1.4.jar -%%DATADIR%%/lib/commons-collections-3.2.1.jar -%%DATADIR%%/lib/commons-compiler-2.7.6.jar -%%DATADIR%%/lib/commons-compress-1.4.1.jar -%%DATADIR%%/lib/commons-configuration-1.6.jar -%%DATADIR%%/lib/commons-dbcp-1.4.jar -%%DATADIR%%/lib/commons-digester-1.8.jar -%%DATADIR%%/lib/commons-httpclient-3.0.1.jar -%%DATADIR%%/lib/commons-io-2.4.jar -%%DATADIR%%/lib/commons-lang-2.6.jar -%%DATADIR%%/lib/commons-logging-1.1.3.jar -%%DATADIR%%/lib/commons-math-2.1.jar -%%DATADIR%%/lib/commons-pool-1.5.4.jar -%%DATADIR%%/lib/commons-vfs2-2.0.jar -%%DATADIR%%/lib/curator-client-2.6.0.jar -%%DATADIR%%/lib/curator-framework-2.6.0.jar -%%DATADIR%%/lib/datanucleus-api-jdo-3.2.6.jar -%%DATADIR%%/lib/datanucleus-core-3.2.10.jar -%%DATADIR%%/lib/datanucleus-rdbms-3.2.9.jar -%%DATADIR%%/lib/derby-10.10.1.1.jar -%%DATADIR%%/lib/eigenbase-properties-1.1.4.jar -%%DATADIR%%/lib/geronimo-annotation_1.0_spec-1.1.1.jar -%%DATADIR%%/lib/geronimo-jaspic_1.0_spec-1.0.jar -%%DATADIR%%/lib/geronimo-jta_1.1_spec-1.1.1.jar -%%DATADIR%%/lib/groovy-all-2.1.6.jar -%%DATADIR%%/lib/guava-11.0.2.jar -%%DATADIR%%/lib/hamcrest-core-1.1.jar -%%DATADIR%%/lib/hive-accumulo-handler-1.0.0.jar -%%DATADIR%%/lib/hive-ant-1.0.0.jar -%%DATADIR%%/lib/hive-beeline-1.0.0.jar -%%DATADIR%%/lib/hive-cli-1.0.0.jar -%%DATADIR%%/lib/hive-common-1.0.0.jar -%%DATADIR%%/lib/hive-contrib-1.0.0.jar -%%DATADIR%%/lib/hive-exec-1.0.0.jar -%%DATADIR%%/lib/hive-hbase-handler-1.0.0.jar -%%DATADIR%%/lib/hive-hwi-1.0.0.jar -%%DATADIR%%/lib/hive-jdbc-1.0.0-standalone.jar -%%DATADIR%%/lib/hive-jdbc-1.0.0.jar -%%DATADIR%%/lib/hive-metastore-1.0.0.jar -%%DATADIR%%/lib/hive-serde-1.0.0.jar -%%DATADIR%%/lib/hive-service-1.0.0.jar -%%DATADIR%%/lib/hive-shims-0.20-1.0.0.jar -%%DATADIR%%/lib/hive-shims-0.20S-1.0.0.jar -%%DATADIR%%/lib/hive-shims-0.23-1.0.0.jar -%%DATADIR%%/lib/hive-shims-1.0.0.jar -%%DATADIR%%/lib/hive-shims-common-1.0.0.jar -%%DATADIR%%/lib/hive-shims-common-secure-1.0.0.jar -%%DATADIR%%/lib/hive-testutils-1.0.0.jar -%%DATADIR%%/lib/httpclient-4.2.5.jar -%%DATADIR%%/lib/httpcore-4.2.5.jar -%%DATADIR%%/lib/janino-2.7.6.jar -%%DATADIR%%/lib/jansi-1.11.jar -%%DATADIR%%/lib/jcommander-1.32.jar -%%DATADIR%%/lib/jdo-api-3.0.1.jar -%%DATADIR%%/lib/jetty-all-7.6.0.v20120127.jar -%%DATADIR%%/lib/jetty-all-server-7.6.0.v20120127.jar -%%DATADIR%%/lib/jline-0.9.94.jar -%%DATADIR%%/lib/jpam-1.1.jar -%%DATADIR%%/lib/jsr305-1.3.9.jar -%%DATADIR%%/lib/jta-1.1.jar -%%DATADIR%%/lib/junit-4.11.jar -%%DATADIR%%/lib/libfb303-0.9.0.jar -%%DATADIR%%/lib/libthrift-0.9.0.jar -%%DATADIR%%/lib/linq4j-0.4.jar -%%DATADIR%%/lib/log4j-1.2.16.jar -%%DATADIR%%/lib/mail-1.4.1.jar -%%DATADIR%%/lib/maven-scm-api-1.4.jar -%%DATADIR%%/lib/maven-scm-provider-svn-commons-1.4.jar -%%DATADIR%%/lib/maven-scm-provider-svnexe-1.4.jar -%%DATADIR%%/lib/opencsv-2.3.jar -%%DATADIR%%/lib/oro-2.0.8.jar -%%DATADIR%%/lib/paranamer-2.3.jar -%%DATADIR%%/lib/pentaho-aggdesigner-algorithm-5.1.3-jhyde.jar -%%DATADIR%%/lib/php/Thrift.php -%%DATADIR%%/lib/php/autoload.php -%%DATADIR%%/lib/php/ext/thrift_protocol/config.m4 -%%DATADIR%%/lib/php/ext/thrift_protocol/php_thrift_protocol.cpp -%%DATADIR%%/lib/php/ext/thrift_protocol/php_thrift_protocol.h -%%DATADIR%%/lib/php/ext/thrift_protocol/tags/1.0.0/config.m4 -%%DATADIR%%/lib/php/ext/thrift_protocol/tags/1.0.0/php_thrift_protocol.cpp -%%DATADIR%%/lib/php/ext/thrift_protocol/tags/1.0.0/php_thrift_protocol.h -%%DATADIR%%/lib/php/packages/fb303/FacebookService.php -%%DATADIR%%/lib/php/packages/fb303/fb303_types.php -%%DATADIR%%/lib/php/packages/hive_metastore/metastore/ThriftHiveMetastore.php -%%DATADIR%%/lib/php/packages/hive_metastore/metastore/Types.php -%%DATADIR%%/lib/php/packages/hive_service/TCLIService.php -%%DATADIR%%/lib/php/packages/hive_service/ThriftHive.php -%%DATADIR%%/lib/php/packages/hive_service/Types.php -%%DATADIR%%/lib/php/packages/queryplan/Types.php -%%DATADIR%%/lib/php/packages/serde/Types.php -%%DATADIR%%/lib/php/packages/serde/org/apache/hadoop/hive/serde/Types.php -%%DATADIR%%/lib/php/protocol/TBinaryProtocol.php -%%DATADIR%%/lib/php/protocol/TProtocol.php -%%DATADIR%%/lib/php/transport/TBufferedTransport.php -%%DATADIR%%/lib/php/transport/TFramedTransport.php -%%DATADIR%%/lib/php/transport/THttpClient.php -%%DATADIR%%/lib/php/transport/TMemoryBuffer.php -%%DATADIR%%/lib/php/transport/TNullTransport.php -%%DATADIR%%/lib/php/transport/TPhpStream.php -%%DATADIR%%/lib/php/transport/TSocket.php -%%DATADIR%%/lib/php/transport/TSocketPool.php -%%DATADIR%%/lib/php/transport/TTransport.php -%%DATADIR%%/lib/plexus-utils-1.5.6.jar -%%DATADIR%%/lib/py/TCLIService/TCLIService-remote -%%DATADIR%%/lib/py/TCLIService/TCLIService.py -%%DATADIR%%/lib/py/TCLIService/__init__.py -%%DATADIR%%/lib/py/TCLIService/constants.py -%%DATADIR%%/lib/py/TCLIService/ttypes.py -%%DATADIR%%/lib/py/fb303/FacebookBase.py -%%DATADIR%%/lib/py/fb303/FacebookService-remote -%%DATADIR%%/lib/py/fb303/FacebookService.py -%%DATADIR%%/lib/py/fb303/__init__.py -%%DATADIR%%/lib/py/fb303/constants.py -%%DATADIR%%/lib/py/fb303/ttypes.py -%%DATADIR%%/lib/py/fb303_scripts/__init__.py -%%DATADIR%%/lib/py/fb303_scripts/fb303_simple_mgmt.py -%%DATADIR%%/lib/py/hive_metastore/ThriftHiveMetastore-remote -%%DATADIR%%/lib/py/hive_metastore/ThriftHiveMetastore.py -%%DATADIR%%/lib/py/hive_metastore/__init__.py -%%DATADIR%%/lib/py/hive_metastore/constants.py -%%DATADIR%%/lib/py/hive_metastore/ttypes.py -%%DATADIR%%/lib/py/hive_serde/__init__.py -%%DATADIR%%/lib/py/hive_serde/constants.py -%%DATADIR%%/lib/py/hive_serde/ttypes.py -%%DATADIR%%/lib/py/hive_service/ThriftHive-remote -%%DATADIR%%/lib/py/hive_service/ThriftHive.py -%%DATADIR%%/lib/py/hive_service/__init__.py -%%DATADIR%%/lib/py/hive_service/constants.py -%%DATADIR%%/lib/py/hive_service/ttypes.py -%%DATADIR%%/lib/py/queryplan/__init__.py -%%DATADIR%%/lib/py/queryplan/constants.py -%%DATADIR%%/lib/py/queryplan/ttypes.py -%%DATADIR%%/lib/py/thrift/TSCons.py -%%DATADIR%%/lib/py/thrift/Thrift.py -%%DATADIR%%/lib/py/thrift/__init__.py -%%DATADIR%%/lib/py/thrift/protocol/TBinaryProtocol.py -%%DATADIR%%/lib/py/thrift/protocol/TProtocol.py -%%DATADIR%%/lib/py/thrift/protocol/__init__.py -%%DATADIR%%/lib/py/thrift/protocol/fastbinary.c -%%DATADIR%%/lib/py/thrift/reflection/__init__.py -%%DATADIR%%/lib/py/thrift/reflection/limited/__init__.py -%%DATADIR%%/lib/py/thrift/reflection/limited/constants.py -%%DATADIR%%/lib/py/thrift/reflection/limited/ttypes.py -%%DATADIR%%/lib/py/thrift/server/THttpServer.py -%%DATADIR%%/lib/py/thrift/server/TNonblockingServer.py -%%DATADIR%%/lib/py/thrift/server/TServer.py -%%DATADIR%%/lib/py/thrift/server/__init__.py -%%DATADIR%%/lib/py/thrift/transport/THttpClient.py -%%DATADIR%%/lib/py/thrift/transport/TSocket.py -%%DATADIR%%/lib/py/thrift/transport/TTransport.py -%%DATADIR%%/lib/py/thrift/transport/TTwisted.py -%%DATADIR%%/lib/py/thrift/transport/__init__.py -%%DATADIR%%/lib/quidem-0.1.1.jar -%%DATADIR%%/lib/regexp-1.3.jar -%%DATADIR%%/lib/servlet-api-2.5.jar -%%DATADIR%%/lib/snappy-java-1.0.5.jar -%%DATADIR%%/lib/stax-api-1.0.1.jar -%%DATADIR%%/lib/stringtemplate-3.2.1.jar -%%DATADIR%%/lib/super-csv-2.2.0.jar -%%DATADIR%%/lib/tempus-fugit-1.1.jar -%%DATADIR%%/lib/velocity-1.5.jar -%%DATADIR%%/lib/xz-1.0.jar -%%DATADIR%%/lib/zookeeper-3.4.5.jar -%%DATADIR%%/scripts/metastore/upgrade/derby/001-HIVE-972.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/002-HIVE-1068.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/003-HIVE-675.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/004-HIVE-1364.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/005-HIVE-417.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/006-HIVE-1823.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/007-HIVE-78.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/008-HIVE-2246.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/008-REVERT-HIVE-2246.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/009-HIVE-2215.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/010-HIVE-3072.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/011-HIVE-3649.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/012-HIVE-1362.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/013-HIVE-3255.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/014-HIVE-3764.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/016-HIVE-6386.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/017-HIVE-6458.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/018-HIVE-6757.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/019-HIVE-7784.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/README -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.10.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.11.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.12.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.13.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.14.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.3.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.4.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.4.1.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.5.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.6.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.7.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.8.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-schema-0.9.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-txn-schema-0.13.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/hive-txn-schema-0.14.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.10.0-to-0.11.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.11.0-to-0.12.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.12.0-to-0.13.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.13.0-to-0.14.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.5.0-to-0.6.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.6.0-to-0.7.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.7.0-to-0.8.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.8.0-to-0.9.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql -%%DATADIR%%/scripts/metastore/upgrade/derby/upgrade.order.derby -%%DATADIR%%/scripts/metastore/upgrade/mssql/001-HIVE-6862.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/002-HIVE-7784.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/003-HIVE-8239.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/004-HIVE-8550.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/README -%%DATADIR%%/scripts/metastore/upgrade/mssql/hive-schema-0.11.0.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/hive-schema-0.12.0.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/hive-schema-0.13.0.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/hive-schema-0.14.0.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/hive-txn-schema-0.13.0.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/hive-txn-schema-0.14.0.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/upgrade-0.12.0-to-0.13.0.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/upgrade-0.13.0-to-0.14.0.mssql.sql -%%DATADIR%%/scripts/metastore/upgrade/mssql/upgrade.order.mssql -%%DATADIR%%/scripts/metastore/upgrade/mysql/001-HIVE-972.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/002-HIVE-1068.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/003-HIVE-675.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/004-HIVE-1364.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/005-HIVE-417.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/006-HIVE-1823.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/007-HIVE-78.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/008-HIVE-2246.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/009-HIVE-2215.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/010-HIVE-3072.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/011-HIVE-3649.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/012-HIVE-1362.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/013-HIVE-3255.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/014-HIVE-3764.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/015-HIVE-5700.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/016-HIVE-6386.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/017-HIVE-6458.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/018-HIVE-6757.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/019-HIVE-7784.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/README -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.10.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.11.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.12.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.13.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.14.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.3.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.4.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.4.1.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.5.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.6.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.7.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.8.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-schema-0.9.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-txn-schema-0.13.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/hive-txn-schema-0.14.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.10.0-to-0.11.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.11.0-to-0.12.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.12.0-to-0.13.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.13.0-to-0.14.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.5.0-to-0.6.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.6.0-to-0.7.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.7.0-to-0.8.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.8.0-to-0.9.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/mysql/upgrade.order.mysql -%%DATADIR%%/scripts/metastore/upgrade/oracle/010-HIVE-3072.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/011-HIVE-3649.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/012-HIVE-1362.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/013-HIVE-3255.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/014-HIVE-3764.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/015-HIVE-5700.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/016-HIVE-6386.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/017-HIVE-6458.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/018-HIVE-6757.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/019-HIVE-7118.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/020-HIVE-7784.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/hive-schema-0.10.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/hive-schema-0.11.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/hive-schema-0.12.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/hive-schema-0.13.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/hive-schema-0.14.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/hive-schema-0.9.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/hive-txn-schema-0.13.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/hive-txn-schema-0.14.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/pre-0-upgrade-0.13.0-to-0.14.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/upgrade-0.10.0-to-0.11.0.mysql.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/upgrade-0.10.0-to-0.11.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/upgrade-0.11.0-to-0.12.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/upgrade-0.12.0-to-0.13.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/upgrade-0.13.0-to-0.14.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/upgrade-0.9.0-to-0.10.0.oracle.sql -%%DATADIR%%/scripts/metastore/upgrade/oracle/upgrade.order.oracle -%%DATADIR%%/scripts/metastore/upgrade/postgres/001-HIVE-972.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/002-HIVE-1068.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/003-HIVE-675.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/004-HIVE-1364.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/005-HIVE-417.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/006-HIVE-1823.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/007-HIVE-78.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/008-HIVE-2246.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/008-REVERT-HIVE-2246.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/009-HIVE-2215.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/010-HIVE-3072.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/011-HIVE-3649.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/012-HIVE-1362.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/013-HIVE-3255.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/014-HIVE-3764.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/015-HIVE-5700.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/016-HIVE-6386.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/017-HIVE-6458.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/018-HIVE-6757.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/019-HIVE-7784.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/README -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.10.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.11.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.12.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.13.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.14.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.3.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.4.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.4.1.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.5.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.6.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.7.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.8.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-schema-0.9.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-txn-schema-0.13.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/hive-txn-schema-0.14.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/pre-0-upgrade-0.12.0-to-0.13.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/pre-0-upgrade-0.13.0-to-0.14.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.10.0-to-0.11.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.11.0-to-0.12.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.12.0-to-0.13.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.13.0-to-0.14.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.5.0-to-0.6.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.6.0-to-0.7.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.7.0-to-0.8.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.8.0-to-0.9.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql -%%DATADIR%%/scripts/metastore/upgrade/postgres/upgrade.order.postgres +hive/bin/beeline +hive/bin/ext/beeline.sh +hive/bin/ext/cli.cmd +hive/bin/ext/cli.sh +hive/bin/ext/debug.cmd +hive/bin/ext/debug.sh +hive/bin/ext/help.cmd +hive/bin/ext/help.sh +hive/bin/ext/hiveburninclient.sh +hive/bin/ext/hiveserver.cmd +hive/bin/ext/hiveserver.sh +hive/bin/ext/hiveserver2.cmd +hive/bin/ext/hiveserver2.sh +hive/bin/ext/hwi.cmd +hive/bin/ext/hwi.sh +hive/bin/ext/jar.cmd +hive/bin/ext/jar.sh +hive/bin/ext/lineage.cmd +hive/bin/ext/lineage.sh +hive/bin/ext/metastore.cmd +hive/bin/ext/metastore.sh +hive/bin/ext/metatool.sh +hive/bin/ext/orcfiledump.cmd +hive/bin/ext/orcfiledump.sh +hive/bin/ext/rcfilecat.cmd +hive/bin/ext/rcfilecat.sh +hive/bin/ext/schemaTool.cmd +hive/bin/ext/schemaTool.sh +hive/bin/ext/util/execHiveCmd.cmd +hive/bin/ext/util/execHiveCmd.sh +hive/bin/ext/version.sh +hive/bin/hive +hive/bin/hive-config.sh +hive/bin/hiveserver2 +hive/bin/metatool +hive/bin/schematool +hive/conf/beeline-log4j.properties.template +hive/conf/hive-default.xml.template +hive/conf/hive-env.sh.template +hive/conf/hive-exec-log4j.properties.template +hive/conf/hive-log4j.properties.template +hive/examples/files/2000_cols_data.csv +hive/examples/files/AvroPrimitiveInList.parquet +hive/examples/files/AvroSingleFieldGroupInList.parquet +hive/examples/files/HiveRequiredGroupInList.parquet +hive/examples/files/MultiFieldGroupInList.parquet +hive/examples/files/NestedMap.parquet +hive/examples/files/NewOptionalGroupInList.parquet +hive/examples/files/NewRequiredGroupInList.parquet +hive/examples/files/ProxyAuth.res +hive/examples/files/SingleFieldGroupInList.parquet +hive/examples/files/SortCol1Col2.txt +hive/examples/files/SortCol2Col1.txt +hive/examples/files/SortDescCol1Col2.txt +hive/examples/files/SortDescCol2Col1.txt +hive/examples/files/T1.txt +hive/examples/files/T2.txt +hive/examples/files/T3.txt +hive/examples/files/ThriftPrimitiveInList.parquet +hive/examples/files/ThriftSingleFieldGroupInList.parquet +hive/examples/files/UnannotatedListOfGroups.parquet +hive/examples/files/UnannotatedListOfPrimitives.parquet +hive/examples/files/UserVisits.dat +hive/examples/files/agg_01-p1.txt +hive/examples/files/agg_01-p2.txt +hive/examples/files/agg_01-p3.txt +hive/examples/files/alltypes.txt +hive/examples/files/alltypes2.txt +hive/examples/files/apache.access.2.log +hive/examples/files/apache.access.log +hive/examples/files/archive_corrupt.rc +hive/examples/files/array_table.txt +hive/examples/files/avro_charvarchar.txt +hive/examples/files/avro_date.txt +hive/examples/files/avro_timestamp.txt +hive/examples/files/binary.txt +hive/examples/files/bool.txt +hive/examples/files/bool_literal.txt +hive/examples/files/cbo_t1.txt +hive/examples/files/cbo_t2.txt +hive/examples/files/cbo_t3.txt +hive/examples/files/cbo_t4.txt +hive/examples/files/cbo_t5.txt +hive/examples/files/cbo_t6.txt +hive/examples/files/char_varchar_udf.txt +hive/examples/files/complex.seq +hive/examples/files/covar_tab.txt +hive/examples/files/create_nested_type.txt +hive/examples/files/csv.txt +hive/examples/files/customer_address.txt +hive/examples/files/data_with_escape.txt +hive/examples/files/datatypes.txt +hive/examples/files/dec.avro +hive/examples/files/dec.parq +hive/examples/files/dec.txt +hive/examples/files/dec_comp.txt +hive/examples/files/decimal.txt +hive/examples/files/decimal_10_0.txt +hive/examples/files/dept.txt +hive/examples/files/dim-data.txt +hive/examples/files/dim_shops.txt +hive/examples/files/doctors.avro +hive/examples/files/docurl.txt +hive/examples/files/double.txt +hive/examples/files/dynpart_test.txt +hive/examples/files/emp.txt +hive/examples/files/employee.dat +hive/examples/files/employee2.dat +hive/examples/files/employee_part.txt +hive/examples/files/empty1.txt +hive/examples/files/empty2.txt +hive/examples/files/episodes.avro +hive/examples/files/escapetest.txt +hive/examples/files/extrapolate_stats_full.txt +hive/examples/files/extrapolate_stats_partial.txt +hive/examples/files/fact-data.txt +hive/examples/files/flights_join.txt +hive/examples/files/flights_tiny.txt +hive/examples/files/flights_tiny.txt.1 +hive/examples/files/futurama_episodes.avro +hive/examples/files/grad.avsc +hive/examples/files/groupby_groupingid.txt +hive/examples/files/grouping_sets.txt +hive/examples/files/grouping_sets1.txt +hive/examples/files/grouping_sets2.txt +hive/examples/files/hive_626_bar.txt +hive/examples/files/hive_626_count.txt +hive/examples/files/hive_626_foo.txt +hive/examples/files/in1.txt +hive/examples/files/in2.txt +hive/examples/files/in3.txt +hive/examples/files/in4.txt +hive/examples/files/in5.txt +hive/examples/files/in6.txt +hive/examples/files/in7.txt +hive/examples/files/in8.txt +hive/examples/files/in9.txt +hive/examples/files/in_file.dat +hive/examples/files/infer_const_type.txt +hive/examples/files/input.txt +hive/examples/files/int.txt +hive/examples/files/json.txt +hive/examples/files/keystore.jks +hive/examples/files/kv1.seq +hive/examples/files/kv1.string-sorted.txt +hive/examples/files/kv1.txt +hive/examples/files/kv1.val.sorted.txt +hive/examples/files/kv10.txt +hive/examples/files/kv1_broken.seq +hive/examples/files/kv1_cb.txt +hive/examples/files/kv1_cc.txt +hive/examples/files/kv1kv2.cogroup.txt +hive/examples/files/kv2.txt +hive/examples/files/kv3.txt +hive/examples/files/kv4.txt +hive/examples/files/kv5.txt +hive/examples/files/kv6.txt +hive/examples/files/kv7.txt +hive/examples/files/kv8.txt +hive/examples/files/kv9.txt +hive/examples/files/leftsemijoin_mr_t1.txt +hive/examples/files/leftsemijoin_mr_t2.txt +hive/examples/files/lineitem.txt +hive/examples/files/loc.txt +hive/examples/files/location.txt +hive/examples/files/lt100.sorted.txt +hive/examples/files/lt100.txt +hive/examples/files/lt100.txt.deflate +hive/examples/files/map_null_schema.avro +hive/examples/files/map_null_val.avro +hive/examples/files/map_table.txt +hive/examples/files/nested_complex.txt +hive/examples/files/non_ascii_tbl.txt +hive/examples/files/null.txt +hive/examples/files/nullfile.txt +hive/examples/files/nulls.txt +hive/examples/files/opencsv-data.txt +hive/examples/files/orc_create.txt +hive/examples/files/orc_create_people.txt +hive/examples/files/orc_split_elim.orc +hive/examples/files/parquet_array_null_element.txt +hive/examples/files/parquet_columnar.txt +hive/examples/files/parquet_create.txt +hive/examples/files/parquet_partitioned.txt +hive/examples/files/parquet_types.txt +hive/examples/files/part.rc +hive/examples/files/part.seq +hive/examples/files/part_tiny.txt +hive/examples/files/person age.txt +hive/examples/files/person+age.txt +hive/examples/files/posexplode_data.txt +hive/examples/files/primitive_type_arrays.txt +hive/examples/files/pw17.txt +hive/examples/files/sales.txt +hive/examples/files/sample-queryplan-in-history.txt +hive/examples/files/sample-queryplan.txt +hive/examples/files/sample.json +hive/examples/files/smallsrcsortbucket1outof4.txt +hive/examples/files/smallsrcsortbucket2outof4.txt +hive/examples/files/smallsrcsortbucket3outof4.txt +hive/examples/files/smallsrcsortbucket4outof4.txt +hive/examples/files/smb_bucket_input.rc +hive/examples/files/smb_bucket_input.txt +hive/examples/files/smbbucket_1.rc +hive/examples/files/smbbucket_1.txt +hive/examples/files/smbbucket_2.rc +hive/examples/files/smbbucket_2.txt +hive/examples/files/smbbucket_3.rc +hive/examples/files/smbbucket_3.txt +hive/examples/files/sour1.txt +hive/examples/files/sour2.txt +hive/examples/files/source.txt +hive/examples/files/srcbucket0.txt +hive/examples/files/srcbucket1.txt +hive/examples/files/srcbucket20.txt +hive/examples/files/srcbucket21.txt +hive/examples/files/srcbucket22.txt +hive/examples/files/srcbucket23.txt +hive/examples/files/srcsortbucket1outof4.txt +hive/examples/files/srcsortbucket2outof4.txt +hive/examples/files/srcsortbucket3outof4.txt +hive/examples/files/srcsortbucket4outof4.txt +hive/examples/files/store.txt +hive/examples/files/store_sales.txt +hive/examples/files/string.txt +hive/examples/files/symlink1.txt +hive/examples/files/symlink2.txt +hive/examples/files/tbl.txt +hive/examples/files/test.dat +hive/examples/files/test1.txt +hive/examples/files/test2.dat +hive/examples/files/text-en.txt +hive/examples/files/things.txt +hive/examples/files/things2.txt +hive/examples/files/tiny_a.txt +hive/examples/files/tiny_b.txt +hive/examples/files/truststore.jks +hive/examples/files/type_evolution.avro +hive/examples/files/union_input.txt +hive/examples/files/v1.txt +hive/examples/files/v2.txt +hive/examples/files/vc1.txt +hive/examples/files/x.txt +hive/examples/files/y.txt +hive/examples/files/z.txt +hive/examples/queries/case_sensitivity.q +hive/examples/queries/cast1.q +hive/examples/queries/groupby1.q +hive/examples/queries/groupby2.q +hive/examples/queries/groupby3.q +hive/examples/queries/groupby4.q +hive/examples/queries/groupby5.q +hive/examples/queries/groupby6.q +hive/examples/queries/input1.q +hive/examples/queries/input2.q +hive/examples/queries/input20.q +hive/examples/queries/input3.q +hive/examples/queries/input4.q +hive/examples/queries/input5.q +hive/examples/queries/input6.q +hive/examples/queries/input7.q +hive/examples/queries/input8.q +hive/examples/queries/input9.q +hive/examples/queries/input_part1.q +hive/examples/queries/input_testsequencefile.q +hive/examples/queries/input_testxpath.q +hive/examples/queries/input_testxpath2.q +hive/examples/queries/join1.q +hive/examples/queries/join2.q +hive/examples/queries/join3.q +hive/examples/queries/join4.q +hive/examples/queries/join5.q +hive/examples/queries/join6.q +hive/examples/queries/join7.q +hive/examples/queries/join8.q +hive/examples/queries/sample1.q +hive/examples/queries/sample2.q +hive/examples/queries/sample3.q +hive/examples/queries/sample4.q +hive/examples/queries/sample5.q +hive/examples/queries/sample6.q +hive/examples/queries/sample7.q +hive/examples/queries/subq.q +hive/examples/queries/udf1.q +hive/examples/queries/udf4.q +hive/examples/queries/udf6.q +hive/examples/queries/udf_case.q +hive/examples/queries/udf_when.q +hive/examples/queries/union.q +hive/hcatalog/bin/common.sh +hive/hcatalog/bin/hcat +hive/hcatalog/bin/hcat.py +hive/hcatalog/bin/hcatcfg.py +hive/hcatalog/bin/templeton.cmd +hive/hcatalog/etc/hcatalog/jndi.properties +hive/hcatalog/etc/hcatalog/proto-hive-site.xml +hive/hcatalog/etc/webhcat/webhcat-default.xml +hive/hcatalog/etc/webhcat/webhcat-log4j.properties +hive/hcatalog/libexec/hcat-config.sh +hive/hcatalog/sbin/hcat_server.py +hive/hcatalog/sbin/hcat_server.sh +hive/hcatalog/sbin/hcatcfg.py +hive/hcatalog/sbin/update-hcatalog-env.sh +hive/hcatalog/sbin/webhcat_config.sh +hive/hcatalog/sbin/webhcat_server.sh +hive/hcatalog/share/doc/hcatalog/README.txt +hive/hcatalog/share/hcatalog/hive-hcatalog-core-%%HIVE_VER%%.jar +hive/hcatalog/share/hcatalog/hive-hcatalog-pig-adapter-%%HIVE_VER%%.jar +hive/hcatalog/share/hcatalog/hive-hcatalog-server-extensions-%%HIVE_VER%%.jar +hive/hcatalog/share/hcatalog/hive-hcatalog-streaming-%%HIVE_VER%%.jar +hive/hcatalog/share/webhcat/java-client/hive-webhcat-java-client-%%HIVE_VER%%.jar +hive/hcatalog/share/webhcat/svr/lib/asm-3.1.jar +hive/hcatalog/share/webhcat/svr/lib/commons-exec-1.1.jar +hive/hcatalog/share/webhcat/svr/lib/hive-webhcat-%%HIVE_VER%%.jar +hive/hcatalog/share/webhcat/svr/lib/jackson-core-asl-1.9.2.jar +hive/hcatalog/share/webhcat/svr/lib/jackson-jaxrs-1.9.2.jar +hive/hcatalog/share/webhcat/svr/lib/jackson-xc-1.9.2.jar +hive/hcatalog/share/webhcat/svr/lib/jaxb-api-2.2.2.jar +hive/hcatalog/share/webhcat/svr/lib/jaxb-impl-2.2.3-1.jar +hive/hcatalog/share/webhcat/svr/lib/jersey-core-1.14.jar +hive/hcatalog/share/webhcat/svr/lib/jersey-json-1.14.jar +hive/hcatalog/share/webhcat/svr/lib/jersey-server-1.14.jar +hive/hcatalog/share/webhcat/svr/lib/jersey-servlet-1.14.jar +hive/hcatalog/share/webhcat/svr/lib/jettison-1.1.jar +hive/hcatalog/share/webhcat/svr/lib/jul-to-slf4j-1.7.5.jar +hive/hcatalog/share/webhcat/svr/lib/stax-api-1.0-2.jar +hive/hcatalog/share/webhcat/svr/lib/wadl-resourcedoc-doclet-1.4.jar +hive/hcatalog/share/webhcat/svr/lib/xercesImpl-2.9.1.jar +hive/hcatalog/share/webhcat/svr/lib/xml-apis-1.3.04.jar +hive/lib/ST4-4.0.4.jar +hive/lib/accumulo-core-1.6.0.jar +hive/lib/accumulo-fate-1.6.0.jar +hive/lib/accumulo-start-1.6.0.jar +hive/lib/accumulo-trace-1.6.0.jar +hive/lib/activation-1.1.jar +hive/lib/ant-1.9.1.jar +hive/lib/ant-launcher-1.9.1.jar +hive/lib/antlr-2.7.7.jar +hive/lib/antlr-runtime-3.4.jar +hive/lib/apache-curator-2.6.0.pom +hive/lib/apache-log4j-extras-1.2.17.jar +hive/lib/asm-commons-3.1.jar +hive/lib/asm-tree-3.1.jar +hive/lib/avro-1.7.5.jar +hive/lib/bonecp-0.8.0.RELEASE.jar +hive/lib/calcite-avatica-1.0.0-incubating.jar +hive/lib/calcite-core-1.0.0-incubating.jar +hive/lib/calcite-linq4j-1.0.0-incubating.jar +hive/lib/commons-beanutils-1.7.0.jar +hive/lib/commons-beanutils-core-1.8.0.jar +hive/lib/commons-cli-1.2.jar +hive/lib/commons-codec-1.4.jar +hive/lib/commons-collections-3.2.1.jar +hive/lib/commons-compiler-2.7.6.jar +hive/lib/commons-compress-1.4.1.jar +hive/lib/commons-configuration-1.6.jar +hive/lib/commons-dbcp-1.4.jar +hive/lib/commons-digester-1.8.jar +hive/lib/commons-httpclient-3.0.1.jar +hive/lib/commons-io-2.4.jar +hive/lib/commons-lang-2.6.jar +hive/lib/commons-logging-1.1.3.jar +hive/lib/commons-math-2.1.jar +hive/lib/commons-pool-1.5.4.jar +hive/lib/commons-vfs2-2.0.jar +hive/lib/curator-client-2.6.0.jar +hive/lib/curator-framework-2.6.0.jar +hive/lib/datanucleus-api-jdo-3.2.6.jar +hive/lib/datanucleus-core-3.2.10.jar +hive/lib/datanucleus-rdbms-3.2.9.jar +hive/lib/derby-10.11.1.1.jar +hive/lib/eigenbase-properties-1.1.4.jar +hive/lib/geronimo-annotation_1.0_spec-1.1.1.jar +hive/lib/geronimo-jaspic_1.0_spec-1.0.jar +hive/lib/geronimo-jta_1.1_spec-1.1.1.jar +hive/lib/groovy-all-2.1.6.jar +hive/lib/guava-14.0.1.jar +hive/lib/hamcrest-core-1.1.jar +hive/lib/hive-accumulo-handler-%%HIVE_VER%%.jar +hive/lib/hive-ant-%%HIVE_VER%%.jar +hive/lib/hive-beeline-%%HIVE_VER%%.jar +hive/lib/hive-cli-%%HIVE_VER%%.jar +hive/lib/hive-common-%%HIVE_VER%%.jar +hive/lib/hive-contrib-%%HIVE_VER%%.jar +hive/lib/hive-exec-%%HIVE_VER%%.jar +hive/lib/hive-hbase-handler-%%HIVE_VER%%.jar +hive/lib/hive-hwi-%%HIVE_VER%%.jar +hive/lib/hive-jdbc-%%HIVE_VER%%-standalone.jar +hive/lib/hive-jdbc-%%HIVE_VER%%.jar +hive/lib/hive-metastore-%%HIVE_VER%%.jar +hive/lib/hive-serde-%%HIVE_VER%%.jar +hive/lib/hive-service-%%HIVE_VER%%.jar +hive/lib/hive-shims-0.20S-%%HIVE_VER%%.jar +hive/lib/hive-shims-0.23-%%HIVE_VER%%.jar +hive/lib/hive-shims-%%HIVE_VER%%.jar +hive/lib/hive-shims-common-%%HIVE_VER%%.jar +hive/lib/hive-shims-scheduler-%%HIVE_VER%%.jar +hive/lib/hive-testutils-%%HIVE_VER%%.jar +hive/lib/httpclient-4.2.5.jar +hive/lib/httpcore-4.2.5.jar +hive/lib/janino-2.7.6.jar +hive/lib/jcommander-1.32.jar +hive/lib/jdo-api-3.0.1.jar +hive/lib/jetty-all-7.6.0.v20120127.jar +hive/lib/jetty-all-server-7.6.0.v20120127.jar +hive/lib/jline-2.12.jar +hive/lib/jpam-1.1.jar +hive/lib/jsr305-3.0.0.jar +hive/lib/jta-1.1.jar +hive/lib/junit-4.11.jar +hive/lib/libfb303-0.9.2.jar +hive/lib/libthrift-0.9.2.jar +hive/lib/log4j-1.2.16.jar +hive/lib/mail-1.4.1.jar +hive/lib/maven-scm-api-1.4.jar +hive/lib/maven-scm-provider-svn-commons-1.4.jar +hive/lib/maven-scm-provider-svnexe-1.4.jar +hive/lib/netty-3.7.0.Final.jar +hive/lib/opencsv-2.3.jar +hive/lib/oro-2.0.8.jar +hive/lib/paranamer-2.3.jar +hive/lib/parquet-hadoop-bundle-1.6.0rc3.jar +hive/lib/pentaho-aggdesigner-algorithm-5.1.5-jhyde.jar +hive/lib/php/Thrift.php +hive/lib/php/autoload.php +hive/lib/php/ext/thrift_protocol/config.m4 +hive/lib/php/ext/thrift_protocol/php_thrift_protocol.cpp +hive/lib/php/ext/thrift_protocol/php_thrift_protocol.h +hive/lib/php/ext/thrift_protocol/tags/1.0.0/config.m4 +hive/lib/php/ext/thrift_protocol/tags/1.0.0/php_thrift_protocol.cpp +hive/lib/php/ext/thrift_protocol/tags/1.0.0/php_thrift_protocol.h +hive/lib/php/packages/fb303/FacebookService.php +hive/lib/php/packages/fb303/fb303_types.php +hive/lib/php/packages/hive_metastore/metastore/ThriftHiveMetastore.php +hive/lib/php/packages/hive_metastore/metastore/Types.php +hive/lib/php/packages/hive_service/TCLIService.php +hive/lib/php/packages/hive_service/ThriftHive.php +hive/lib/php/packages/hive_service/Types.php +hive/lib/php/packages/queryplan/Types.php +hive/lib/php/packages/serde/Types.php +hive/lib/php/packages/serde/org/apache/hadoop/hive/serde/Types.php +hive/lib/php/protocol/TBinaryProtocol.php +hive/lib/php/protocol/TProtocol.php +hive/lib/php/transport/TBufferedTransport.php +hive/lib/php/transport/TFramedTransport.php +hive/lib/php/transport/THttpClient.php +hive/lib/php/transport/TMemoryBuffer.php +hive/lib/php/transport/TNullTransport.php +hive/lib/php/transport/TPhpStream.php +hive/lib/php/transport/TSocket.php +hive/lib/php/transport/TSocketPool.php +hive/lib/php/transport/TTransport.php +hive/lib/plexus-utils-1.5.6.jar +hive/lib/py/TCLIService/TCLIService-remote +hive/lib/py/TCLIService/TCLIService.py +hive/lib/py/TCLIService/__init__.py +hive/lib/py/TCLIService/constants.py +hive/lib/py/TCLIService/ttypes.py +hive/lib/py/fb303/FacebookBase.py +hive/lib/py/fb303/FacebookService-remote +hive/lib/py/fb303/FacebookService.py +hive/lib/py/fb303/__init__.py +hive/lib/py/fb303/constants.py +hive/lib/py/fb303/ttypes.py +hive/lib/py/fb303_scripts/__init__.py +hive/lib/py/fb303_scripts/fb303_simple_mgmt.py +hive/lib/py/hive_metastore/ThriftHiveMetastore-remote +hive/lib/py/hive_metastore/ThriftHiveMetastore.py +hive/lib/py/hive_metastore/__init__.py +hive/lib/py/hive_metastore/constants.py +hive/lib/py/hive_metastore/ttypes.py +hive/lib/py/hive_serde/__init__.py +hive/lib/py/hive_serde/constants.py +hive/lib/py/hive_serde/ttypes.py +hive/lib/py/hive_service/ThriftHive-remote +hive/lib/py/hive_service/ThriftHive.py +hive/lib/py/hive_service/__init__.py +hive/lib/py/hive_service/constants.py +hive/lib/py/hive_service/ttypes.py +hive/lib/py/queryplan/__init__.py +hive/lib/py/queryplan/constants.py +hive/lib/py/queryplan/ttypes.py +hive/lib/py/thrift/TSCons.py +hive/lib/py/thrift/Thrift.py +hive/lib/py/thrift/__init__.py +hive/lib/py/thrift/protocol/TBinaryProtocol.py +hive/lib/py/thrift/protocol/TProtocol.py +hive/lib/py/thrift/protocol/__init__.py +hive/lib/py/thrift/protocol/fastbinary.c +hive/lib/py/thrift/reflection/__init__.py +hive/lib/py/thrift/reflection/limited/__init__.py +hive/lib/py/thrift/reflection/limited/constants.py +hive/lib/py/thrift/reflection/limited/ttypes.py +hive/lib/py/thrift/server/THttpServer.py +hive/lib/py/thrift/server/TNonblockingServer.py +hive/lib/py/thrift/server/TServer.py +hive/lib/py/thrift/server/__init__.py +hive/lib/py/thrift/transport/THttpClient.py +hive/lib/py/thrift/transport/TSocket.py +hive/lib/py/thrift/transport/TTransport.py +hive/lib/py/thrift/transport/TTwisted.py +hive/lib/py/thrift/transport/__init__.py +hive/lib/regexp-1.3.jar +hive/lib/servlet-api-2.5.jar +hive/lib/snappy-java-1.0.5.jar +hive/lib/stax-api-1.0.1.jar +hive/lib/stringtemplate-3.2.1.jar +hive/lib/super-csv-2.2.0.jar +hive/lib/tempus-fugit-1.1.jar +hive/lib/velocity-1.5.jar +hive/lib/xz-1.0.jar +hive/lib/zookeeper-3.4.6.jar +hive/scripts/metastore/upgrade/derby/001-HIVE-972.derby.sql +hive/scripts/metastore/upgrade/derby/002-HIVE-1068.derby.sql +hive/scripts/metastore/upgrade/derby/003-HIVE-675.derby.sql +hive/scripts/metastore/upgrade/derby/004-HIVE-1364.derby.sql +hive/scripts/metastore/upgrade/derby/005-HIVE-417.derby.sql +hive/scripts/metastore/upgrade/derby/006-HIVE-1823.derby.sql +hive/scripts/metastore/upgrade/derby/007-HIVE-78.derby.sql +hive/scripts/metastore/upgrade/derby/008-HIVE-2246.derby.sql +hive/scripts/metastore/upgrade/derby/008-REVERT-HIVE-2246.derby.sql +hive/scripts/metastore/upgrade/derby/009-HIVE-2215.derby.sql +hive/scripts/metastore/upgrade/derby/010-HIVE-3072.derby.sql +hive/scripts/metastore/upgrade/derby/011-HIVE-3649.derby.sql +hive/scripts/metastore/upgrade/derby/012-HIVE-1362.derby.sql +hive/scripts/metastore/upgrade/derby/013-HIVE-3255.derby.sql +hive/scripts/metastore/upgrade/derby/014-HIVE-3764.derby.sql +hive/scripts/metastore/upgrade/derby/016-HIVE-6386.derby.sql +hive/scripts/metastore/upgrade/derby/017-HIVE-6458.derby.sql +hive/scripts/metastore/upgrade/derby/018-HIVE-6757.derby.sql +hive/scripts/metastore/upgrade/derby/019-HIVE-7784.derby.sql +hive/scripts/metastore/upgrade/derby/020-HIVE-9296.derby.sql +hive/scripts/metastore/upgrade/derby/README +hive/scripts/metastore/upgrade/derby/hive-schema-0.10.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.11.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.12.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.13.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.14.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.3.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.4.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.4.1.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.5.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.6.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.7.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.8.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-0.9.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-schema-%%HIVE_VER%%.derby.sql +hive/scripts/metastore/upgrade/derby/hive-txn-schema-0.13.0.derby.sql +hive/scripts/metastore/upgrade/derby/hive-txn-schema-0.14.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.10.0-to-0.11.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.11.0-to-0.12.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.12.0-to-0.13.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.13.0-to-0.14.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.14.0-to-%%HIVE_VER%%.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.5.0-to-0.6.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.6.0-to-0.7.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.7.0-to-0.8.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.8.0-to-0.9.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade-0.9.0-to-0.10.0.derby.sql +hive/scripts/metastore/upgrade/derby/upgrade.order.derby +hive/scripts/metastore/upgrade/mssql/001-HIVE-6862.mssql.sql +hive/scripts/metastore/upgrade/mssql/002-HIVE-7784.mssql.sql +hive/scripts/metastore/upgrade/mssql/003-HIVE-8239.mssql.sql +hive/scripts/metastore/upgrade/mssql/004-HIVE-8550.mssql.sql +hive/scripts/metastore/upgrade/mssql/005-HIVE-9296.mssql.sql +hive/scripts/metastore/upgrade/mssql/README +hive/scripts/metastore/upgrade/mssql/hive-schema-0.11.0.mssql.sql +hive/scripts/metastore/upgrade/mssql/hive-schema-0.12.0.mssql.sql +hive/scripts/metastore/upgrade/mssql/hive-schema-0.13.0.mssql.sql +hive/scripts/metastore/upgrade/mssql/hive-schema-0.14.0.mssql.sql +hive/scripts/metastore/upgrade/mssql/hive-schema-%%HIVE_VER%%.mssql.sql +hive/scripts/metastore/upgrade/mssql/hive-txn-schema-0.13.0.mssql.sql +hive/scripts/metastore/upgrade/mssql/hive-txn-schema-0.14.0.mssql.sql +hive/scripts/metastore/upgrade/mssql/upgrade-0.12.0-to-0.13.0.mssql.sql +hive/scripts/metastore/upgrade/mssql/upgrade-0.13.0-to-0.14.0.mssql.sql +hive/scripts/metastore/upgrade/mssql/upgrade-0.14.0-to-%%HIVE_VER%%.mssql.sql +hive/scripts/metastore/upgrade/mssql/upgrade.order.mssql +hive/scripts/metastore/upgrade/mysql/001-HIVE-972.mysql.sql +hive/scripts/metastore/upgrade/mysql/002-HIVE-1068.mysql.sql +hive/scripts/metastore/upgrade/mysql/003-HIVE-675.mysql.sql +hive/scripts/metastore/upgrade/mysql/004-HIVE-1364.mysql.sql +hive/scripts/metastore/upgrade/mysql/005-HIVE-417.mysql.sql +hive/scripts/metastore/upgrade/mysql/006-HIVE-1823.mysql.sql +hive/scripts/metastore/upgrade/mysql/007-HIVE-78.mysql.sql +hive/scripts/metastore/upgrade/mysql/008-HIVE-2246.mysql.sql +hive/scripts/metastore/upgrade/mysql/009-HIVE-2215.mysql.sql +hive/scripts/metastore/upgrade/mysql/010-HIVE-3072.mysql.sql +hive/scripts/metastore/upgrade/mysql/011-HIVE-3649.mysql.sql +hive/scripts/metastore/upgrade/mysql/012-HIVE-1362.mysql.sql +hive/scripts/metastore/upgrade/mysql/013-HIVE-3255.mysql.sql +hive/scripts/metastore/upgrade/mysql/014-HIVE-3764.mysql.sql +hive/scripts/metastore/upgrade/mysql/016-HIVE-6386.mysql.sql +hive/scripts/metastore/upgrade/mysql/017-HIVE-6458.mysql.sql +hive/scripts/metastore/upgrade/mysql/018-HIVE-6757.mysql.sql +hive/scripts/metastore/upgrade/mysql/019-HIVE-7784.mysql.sql +hive/scripts/metastore/upgrade/mysql/020-HIVE-9296.mysql.sql +hive/scripts/metastore/upgrade/mysql/README +hive/scripts/metastore/upgrade/mysql/hive-schema-0.10.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.11.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.12.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.13.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.14.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.3.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.4.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.4.1.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.5.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.6.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.7.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.8.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-0.9.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-schema-%%HIVE_VER%%.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-txn-schema-0.13.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/hive-txn-schema-0.14.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.10.0-to-0.11.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.11.0-to-0.12.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.12.0-to-0.13.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.13.0-to-0.14.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.14.0-to-%%HIVE_VER%%.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.5.0-to-0.6.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.6.0-to-0.7.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.7.0-to-0.8.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.8.0-to-0.9.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade-0.9.0-to-0.10.0.mysql.sql +hive/scripts/metastore/upgrade/mysql/upgrade.order.mysql +hive/scripts/metastore/upgrade/oracle/010-HIVE-3072.oracle.sql +hive/scripts/metastore/upgrade/oracle/011-HIVE-3649.oracle.sql +hive/scripts/metastore/upgrade/oracle/012-HIVE-1362.oracle.sql +hive/scripts/metastore/upgrade/oracle/013-HIVE-3255.oracle.sql +hive/scripts/metastore/upgrade/oracle/014-HIVE-3764.oracle.sql +hive/scripts/metastore/upgrade/oracle/016-HIVE-6386.oracle.sql +hive/scripts/metastore/upgrade/oracle/017-HIVE-6458.oracle.sql +hive/scripts/metastore/upgrade/oracle/018-HIVE-6757.oracle.sql +hive/scripts/metastore/upgrade/oracle/019-HIVE-7118.oracle.sql +hive/scripts/metastore/upgrade/oracle/020-HIVE-7784.oracle.sql +hive/scripts/metastore/upgrade/oracle/021-HIVE-9296.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-schema-0.10.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-schema-0.11.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-schema-0.12.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-schema-0.13.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-schema-0.14.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-schema-0.9.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-schema-%%HIVE_VER%%.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-txn-schema-0.13.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/hive-txn-schema-0.14.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/pre-0-upgrade-0.13.0-to-0.14.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/upgrade-0.10.0-to-0.11.0.mysql.sql +hive/scripts/metastore/upgrade/oracle/upgrade-0.10.0-to-0.11.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/upgrade-0.11.0-to-0.12.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/upgrade-0.12.0-to-0.13.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/upgrade-0.13.0-to-0.14.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/upgrade-0.14.0-to-%%HIVE_VER%%.oracle.sql +hive/scripts/metastore/upgrade/oracle/upgrade-0.9.0-to-0.10.0.oracle.sql +hive/scripts/metastore/upgrade/oracle/upgrade.order.oracle +hive/scripts/metastore/upgrade/postgres/001-HIVE-972.postgres.sql +hive/scripts/metastore/upgrade/postgres/002-HIVE-1068.postgres.sql +hive/scripts/metastore/upgrade/postgres/003-HIVE-675.postgres.sql +hive/scripts/metastore/upgrade/postgres/004-HIVE-1364.postgres.sql +hive/scripts/metastore/upgrade/postgres/005-HIVE-417.postgres.sql +hive/scripts/metastore/upgrade/postgres/006-HIVE-1823.postgres.sql +hive/scripts/metastore/upgrade/postgres/007-HIVE-78.postgres.sql +hive/scripts/metastore/upgrade/postgres/008-HIVE-2246.postgres.sql +hive/scripts/metastore/upgrade/postgres/008-REVERT-HIVE-2246.postgres.sql +hive/scripts/metastore/upgrade/postgres/009-HIVE-2215.postgres.sql +hive/scripts/metastore/upgrade/postgres/010-HIVE-3072.postgres.sql +hive/scripts/metastore/upgrade/postgres/011-HIVE-3649.postgres.sql +hive/scripts/metastore/upgrade/postgres/012-HIVE-1362.postgres.sql +hive/scripts/metastore/upgrade/postgres/013-HIVE-3255.postgres.sql +hive/scripts/metastore/upgrade/postgres/014-HIVE-3764.postgres.sql +hive/scripts/metastore/upgrade/postgres/016-HIVE-6386.postgres.sql +hive/scripts/metastore/upgrade/postgres/017-HIVE-6458.postgres.sql +hive/scripts/metastore/upgrade/postgres/018-HIVE-6757.postgres.sql +hive/scripts/metastore/upgrade/postgres/019-HIVE-7784.postgres.sql +hive/scripts/metastore/upgrade/postgres/020-HIVE-9296.postgres.sql +hive/scripts/metastore/upgrade/postgres/README +hive/scripts/metastore/upgrade/postgres/hive-schema-0.10.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.11.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.12.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.13.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.14.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.3.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.4.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.4.1.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.5.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.6.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.7.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.8.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-0.9.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-schema-%%HIVE_VER%%.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-txn-schema-0.13.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/hive-txn-schema-0.14.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/pre-0-upgrade-0.12.0-to-0.13.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/pre-0-upgrade-0.13.0-to-0.14.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.10.0-to-0.11.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.11.0-to-0.12.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.12.0-to-0.13.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.13.0-to-0.14.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.14.0-to-%%HIVE_VER%%.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.5.0-to-0.6.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.6.0-to-0.7.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.7.0-to-0.8.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.8.0-to-0.9.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade-0.9.0-to-0.10.0.postgres.sql +hive/scripts/metastore/upgrade/postgres/upgrade.order.postgres +@dir(%%HIVE_USER%%,%%HIVE_GROUP%%,) %%HIVE_LOGDIR%% +@dir(%%HIVE_USER%%,%%HIVE_GROUP%%,) %%HIVE_RUNDIR%% |