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 d188602 commit 22bfd5eCopy full SHA for 22bfd5e
sql/core/src/test/scala/org/apache/spark/sql/SQLQuerySuite.scala
@@ -4040,7 +4040,7 @@ class SQLQuerySuite extends QueryTest with SharedSparkSession with AdaptiveSpark
4040
spark.range(5).toDF().repartition(1).write.saveAsTable("left_table")
4041
spark.range(3).write.saveAsTable("nonempty_right_table")
4042
spark.range(0).write.saveAsTable("empty_right_table")
4043
- Seq("LEFT SEMI").foreach { joinType =>
+ Seq("LEFT SEMI", "LEFT ANTI").foreach { joinType =>
4044
val joinWithNonEmptyRightDf = spark.sql(
4045
s"SELECT * FROM left_table $joinType JOIN nonempty_right_table LIMIT 3")
4046
val joinWithEmptyRightDf = spark.sql(
0 commit comments