aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src
diff options
context:
space:
mode:
authorJacky Li <jacky.likun@gmail.com>2014-11-20 15:48:36 -0800
committerMichael Armbrust <michael@databricks.com>2014-11-20 15:48:36 -0800
commitad5f1f3ca240473261162c06ffc5aa70d15a5991 (patch)
treeaf2d831553def6e87ed6fef9db290ea768493abd /sql/core/src
parent6aa0fc9f4d95f09383cbcb5f79166c60697e6683 (diff)
downloadspark-ad5f1f3ca240473261162c06ffc5aa70d15a5991.tar.gz
spark-ad5f1f3ca240473261162c06ffc5aa70d15a5991.tar.bz2
spark-ad5f1f3ca240473261162c06ffc5aa70d15a5991.zip
[SQL] fix function description mistake
Sample code in the description of SchemaRDD.where is not correct Author: Jacky Li <jacky.likun@gmail.com> Closes #3344 from jackylk/patch-6 and squashes the following commits: 62cd126 [Jacky Li] [SQL] fix function description mistake
Diffstat (limited to 'sql/core/src')
-rw-r--r--sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala2
1 files changed, 1 insertions, 1 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 f8970cd3e6..452baab8eb 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
@@ -307,7 +307,7 @@ class SchemaRDD(
* Filters tuples using a function over the value of the specified column.
*
* {{{
- * schemaRDD.sfilter('a)((a: Int) => ...)
+ * schemaRDD.where('a)((a: Int) => ...)
* }}}
*
* @group Query