aboutsummaryrefslogtreecommitdiff
path: root/spark-shell
diff options
context:
space:
mode:
authorMatei Zaharia <matei@eecs.berkeley.edu>2011-05-31 19:23:15 -0700
committerMatei Zaharia <matei@eecs.berkeley.edu>2011-05-31 19:23:15 -0700
commitd52660c96925291eb7b2ce32cb6ad72dc50eade7 (patch)
treebd7fe386955fd953ece6e2cccbaddfb85320d578 /spark-shell
parentbeb9c117f053a6ce4431b3553897515d7d00c900 (diff)
downloadspark-d52660c96925291eb7b2ce32cb6ad72dc50eade7.tar.gz
spark-d52660c96925291eb7b2ce32cb6ad72dc50eade7.tar.bz2
spark-d52660c96925291eb7b2ce32cb6ad72dc50eade7.zip
Ported code generation changes from 2.8 interpreter (to use a class for
each line's object rather than a singleton object so that we can ship these classes to worker nodes). This is pretty hairy stuff, which would be nice to avoid in the future by integrating with the interpreter some other way.
Diffstat (limited to 'spark-shell')
-rwxr-xr-xspark-shell2
1 files changed, 1 insertions, 1 deletions
diff --git a/spark-shell b/spark-shell
index 009f96fe98..29e5e65da2 100755
--- a/spark-shell
+++ b/spark-shell
@@ -1,3 +1,3 @@
#!/bin/sh
FWDIR="`dirname $0`"
-exec $FWDIR/run spark.repl.Main $@
+exec $FWDIR/run spark.repl.Main "$@"