We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2041382 commit afb60a5Copy full SHA for afb60a5
sql/core/src/main/scala/org/apache/spark/sql/DataFrame.scala
@@ -474,6 +474,7 @@ class DataFrame private[sql](
474
val rightCol = withPlan(joined.right).resolve(col).toAttribute.withNullability(true)
475
Alias(Coalesce(Seq(leftCol, rightCol)), col)()
476
}
477
+ case NaturalJoin(_) => sys.error("NaturalJoin with using clause is not supported.")
478
479
// The nullability of output of joined could be different than original column,
480
// so we can only compare them by exprId
0 commit comments