tokoko commented on code in PR #58506:
URL: https://github.com/apache/spark/pull/58506#discussion_r3932777556
##########
sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala:
##########
@@ -1838,6 +1838,20 @@ class JoinSuite extends SharedSparkSession with
AdaptiveSparkPlanHelper
cached.unpersist()
}
}
+
+ test("SPARK-53618: full outer join with a false condition is rewritten to a
union") {
+ val df = sql(
+ """
+ |SELECT t1.id AS a, t2.id AS b
+ |FROM range(0, 2) t1 FULL OUTER JOIN range(10, 12) t2 ON 1 = 0
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]