From ad5f1f3ca240473261162c06ffc5aa70d15a5991 Mon Sep 17 00:00:00 2001 From: Jacky Li <jacky.likun@gmail.com> Date: Thu, 20 Nov 2014 15:48:36 -0800 Subject: [PATCH] [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 --- sql/core/src/main/scala/org/apache/spark/sql/SchemaRDD.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- GitLab