Skip to content

Commit 32cbdfd

Browse files
marmbruspwendell
authored andcommitted
[SQL] Un-ignore a test that is now passing.
Add golden answer for aforementioned test. Also, fix golden test generation from sbt/sbt by setting the classpath correctly. Author: Michael Armbrust <[email protected]> Closes #244 from marmbrus/partTest and squashes the following commits: 37a33c9 [Michael Armbrust] Un-ignore a test that is now passing, add golden answer for aforementioned test. Fix golden test generation from sbt/sbt.
1 parent 345825d commit 32cbdfd

File tree

3 files changed

+2010
-4
lines changed

3 files changed

+2010
-4
lines changed

sbt/sbt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
#!/usr/bin/env bash
22

3+
# When creating new tests for Spark SQL Hive, the HADOOP_CLASSPATH must contain the hive jars so
4+
# that we can run Hive to generate the golden answer. This is not required for normal development
5+
# or testing.
6+
for i in $HIVE_HOME/lib/*
7+
do HADOOP_CLASSPATH=$HADOOP_CLASSPATH:$i
8+
done
9+
export HADOOP_CLASSPATH
10+
311
realpath () {
412
(
513
TARGET_FILE=$1

0 commit comments

Comments
 (0)