Repository: spark
Updated Branches:
  refs/heads/branch-1.4 f7c200e6a -> da51cf58f


[SQL][DOCS] Remove wrong example from DataFrame.scala

In DataFrame.scala, there are examples like as follows.

```
 * // The following are equivalent:
 * peopleDf.filter($"age" > 15)
 * peopleDf.where($"age" > 15)
 * peopleDf($"age" > 15)
```

But, I think the last example doesn't work.

Author: Kousuke Saruta <saru...@oss.nttdata.co.jp>

Closes #6977 from sarutak/fix-dataframe-example and squashes the following 
commits:

46efbd7 [Kousuke Saruta] Removed wrong example

(cherry picked from commit 94e040d05996111b2b448bcdee1cda184c6d039b)
Signed-off-by: Reynold Xin <r...@databricks.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/da51cf58
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/da51cf58
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/da51cf58

Branch: refs/heads/branch-1.4
Commit: da51cf58fcdc7a094590d267f3ce779d91fea6e6
Parents: f7c200e
Author: Kousuke Saruta <saru...@oss.nttdata.co.jp>
Authored: Mon Jun 29 12:16:12 2015 -0700
Committer: Reynold Xin <r...@databricks.com>
Committed: Mon Jun 29 12:16:44 2015 -0700

----------------------------------------------------------------------
 sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/da51cf58/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala 
b/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
index 29bba18..0b76138 100644
--- a/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
+++ b/sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
@@ -633,7 +633,6 @@ class DataFrame private[sql](
    *   // The following are equivalent:
    *   peopleDf.filter($"age" > 15)
    *   peopleDf.where($"age" > 15)
-   *   peopleDf($"age" > 15)
    * }}}
    * @group dfops
    * @since 1.3.0
@@ -658,7 +657,6 @@ class DataFrame private[sql](
    *   // The following are equivalent:
    *   peopleDf.filter($"age" > 15)
    *   peopleDf.where($"age" > 15)
-   *   peopleDf($"age" > 15)
    * }}}
    * @group dfops
    * @since 1.3.0


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to