mirror of
https://github.com/apache/impala.git
synced 2026-01-06 06:01:03 -05:00
11 lines
298 B
Bash
Executable File
11 lines
298 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2012 Cloudera, Inc. All rights reserved.
|
|
|
|
bin=`dirname "$0"`
|
|
bin=`cd "$bin"; pwd`
|
|
. "$bin"/impala-config.sh
|
|
|
|
cd $IMPALA_FE_DIR
|
|
mvn -e exec:java -Dexec.mainClass=com.cloudera.impala.testutil.PlanService \
|
|
-Dexec.classpathScope=test -Dexec.args="$@"
|