Skip to content

Commit

Permalink
Removed println
Browse files Browse the repository at this point in the history
  • Loading branch information
rxin committed May 5, 2015
1 parent 9f6b72f commit 6be2b4d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion sql/core/src/main/scala/org/apache/spark/sql/Column.scala
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ class Column(protected[sql] val expr: Expression) extends Logging {
def === (other: Any): Column = {
val right = lit(other).expr
if (this.expr == right) {
println("other is " + other + " " + other.asInstanceOf[Column].expr.getClass)
logWarning(
s"Constructing trivially true equals predicate, '${this.expr} = $right'. " +
"Perhaps you need to use aliases.")
Expand Down

0 comments on commit 6be2b4d

Please sign in to comment.