aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Arroyo Cazorla <darroyo@stratio.com>2015-07-23 10:34:32 -0700
committerReynold Xin <rxin@databricks.com>2015-07-23 10:34:32 -0700
commit662d60db3f4a758b6869de5bd971d23bd5962c3b (patch)
tree92aa6bd61217ff32c51d58c3ddd4f110e976e0d3
parentecfb3127670c7f15e3a15e7f51fa578532480cda (diff)
downloadspark-662d60db3f4a758b6869de5bd971d23bd5962c3b.tar.gz
spark-662d60db3f4a758b6869de5bd971d23bd5962c3b.tar.bz2
spark-662d60db3f4a758b6869de5bd971d23bd5962c3b.zip
[SPARK-5447][SQL] Replace reference 'schema rdd' with DataFrame @rxin.
Author: David Arroyo Cazorla <darroyo@stratio.com> Closes #7618 from darroyocazorla/master and squashes the following commits: 5f91379 [David Arroyo Cazorla] [SPARK-5447][SQL] Replace reference 'schema rdd' with DataFrame
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/execution/CacheManager.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/execution/CacheManager.scala b/sql/core/src/main/scala/org/apache/spark/sql/execution/CacheManager.scala
index a4b38d364d..d3e5c378d0 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/execution/CacheManager.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/execution/CacheManager.scala
@@ -84,7 +84,7 @@ private[sql] class CacheManager(sqlContext: SQLContext) extends Logging {
}
/**
- * Caches the data produced by the logical representation of the given schema rdd. Unlike
+ * Caches the data produced by the logical representation of the given [[DataFrame]]. Unlike
* `RDD.cache()`, the default storage level is set to be `MEMORY_AND_DISK` because recomputing
* the in-memory columnar representation of the underlying table is expensive.
*/