aboutsummaryrefslogtreecommitdiff
path: root/sql/core
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2014-06-11 15:54:41 -0700
committerPatrick Wendell <pwendell@gmail.com>2014-06-11 15:54:41 -0700
commit14e6dc94f68e57de82841c4ebbb573797a53869c (patch)
tree5044dd98bb4b77fa5f998bfcb91db674b067a18c /sql/core
parentfe78b8b6f7e3fe519659134c6fcaf7344077ead8 (diff)
downloadspark-14e6dc94f68e57de82841c4ebbb573797a53869c.tar.gz
spark-14e6dc94f68e57de82841c4ebbb573797a53869c.tar.bz2
spark-14e6dc94f68e57de82841c4ebbb573797a53869c.zip
HOTFIX: PySpark tests should be order insensitive.
This has been messing up the SQL PySpark tests on Jenkins. Author: Patrick Wendell <pwendell@gmail.com> Closes #1054 from pwendell/pyspark and squashes the following commits: 1eb5487 [Patrick Wendell] False change 06f062d [Patrick Wendell] HOTFIX: PySpark tests should be order insensitive
Diffstat (limited to 'sql/core')
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala b/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
index 7ad8edf5a5..44b19bca46 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala
@@ -33,6 +33,7 @@ import org.apache.spark.api.java.JavaRDD
import java.util.{Map => JMap}
/**
+ * ***FALSE CHANGE***
* :: AlphaComponent ::
* An RDD of [[Row]] objects that has an associated schema. In addition to standard RDD functions,
* SchemaRDDs can be used in relational queries, as shown in the examples below.