aboutsummaryrefslogtreecommitdiff
path: root/sql
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:49 -0800
commit69e28046b5ebc1ec3afb678b4c81c69e48c02aa8 (patch)
treecc6f8e5120874916a30e9890c22484f2e1e72188 /sql
parent29e8d50773c40abe949d6b3284e0e89a0acb45af (diff)
downloadspark-69e28046b5ebc1ec3afb678b4c81c69e48c02aa8.tar.gz
spark-69e28046b5ebc1ec3afb678b4c81c69e48c02aa8.tar.bz2
spark-69e28046b5ebc1ec3afb678b4c81c69e48c02aa8.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 (cherry picked from commit ad5f1f3ca240473261162c06ffc5aa70d15a5991) Signed-off-by: Michael Armbrust <michael@databricks.com>
Diffstat (limited to 'sql')
-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