Files
impala/testdata/bin/copy-data-sources.sh
Casey Ching cfb1ab5c2c IMPALA-2781: Fix shell error reporting after chdir
The original error reporting relied on $0 being accessible from the
current working dir, which failed if a script changed the working dir
and $0 was relative. This updates the error reporting command to cd back
to the original dir before accessing $0.

Change-Id: I2185af66e35e29b41dbe1bb08de24200bacea8a1
Reviewed-on: http://gerrit.cloudera.org:8080/1666
Reviewed-by: Casey Ching <casey@cloudera.com>
Tested-by: Internal Jenkins
2016-01-14 07:10:54 +00:00

16 lines
534 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2014 Cloudera, Inc. All rights reserved.
#
# This script copies the test data source library into hdfs.
set -euo pipefail
trap 'echo Error in $0 at line $LINENO: $(cd "'$PWD'" && awk "NR == $LINENO" $0)' ERR
. ${IMPALA_HOME}/bin/impala-config.sh > /dev/null 2>&1
hadoop fs -mkdir -p ${FILESYSTEM_PREFIX}/test-warehouse/data-sources/
hadoop fs -put -f \
${IMPALA_HOME}/ext-data-source/test/target/impala-data-source-test-*.jar \
${FILESYSTEM_PREFIX}/test-warehouse/data-sources/test-data-source.jar