Skip to content

Commit afb60a5

Browse files
committed
fix df
1 parent 2041382 commit afb60a5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,7 @@ class DataFrame private[sql](
474474
val rightCol = withPlan(joined.right).resolve(col).toAttribute.withNullability(true)
475475
Alias(Coalesce(Seq(leftCol, rightCol)), col)()
476476
}
477+
case NaturalJoin(_) => sys.error("NaturalJoin with using clause is not supported.")
477478
}
478479
// The nullability of output of joined could be different than original column,
479480
// so we can only compare them by exprId

0 commit comments

Comments
 (0)