Skip to content

Commit 795920a

Browse files
committed
Fixes compilation error after rebasing
1 parent 0b8cd70 commit 795920a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,8 +467,8 @@ class DataFrame private[sql](
467467
// By the time we get here, since we have already run analysis, all attributes should've been
468468
// resolved and become AttributeReference.
469469
val cond = plan.condition.map { _.transform {
470-
case EqualTo(a: AttributeReference, b: AttributeReference) if a.sameRef(b) =>
471-
EqualTo(plan.left.resolve(a.name), plan.right.resolve(b.name))
470+
case expressions.EqualTo(a: AttributeReference, b: AttributeReference) if a.sameRef(b) =>
471+
expressions.EqualTo(plan.left.resolve(a.name), plan.right.resolve(b.name))
472472
}}
473473
plan.copy(condition = cond)
474474
}

0 commit comments

Comments
 (0)