Skip to content

Commit

Permalink
Missing quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
rxin committed Jan 27, 2015
1 parent b9306b4 commit e971078
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ class DataFrame protected[sql](
* // The following are equivalent:
* peopleDf.filter($"age" > 15)
* peopleDf.where($"age" > 15)
* peopleDf($"age > 15)
* peopleDf($"age" > 15)
* }}}
*/
override def filter(condition: Column): DataFrame = {
Expand All @@ -307,7 +307,7 @@ class DataFrame protected[sql](
* // The following are equivalent:
* peopleDf.filter($"age" > 15)
* peopleDf.where($"age" > 15)
* peopleDf($"age > 15)
* peopleDf($"age" > 15)
* }}}
*/
override def where(condition: Column): DataFrame = filter(condition)
Expand All @@ -318,7 +318,7 @@ class DataFrame protected[sql](
* // The following are equivalent:
* peopleDf.filter($"age" > 15)
* peopleDf.where($"age" > 15)
* peopleDf($"age > 15)
* peopleDf($"age" > 15)
* }}}
*/
override def apply(condition: Column): DataFrame = filter(condition)
Expand Down

0 comments on commit e971078

Please sign in to comment.