Github user gatorsmile commented on the pull request: https://github.com/apache/spark/pull/12214#issuecomment-214972960 @hvanhovell It sounds like something is wrong? ```scala test("left anti join") { val df = Seq(1, 3).toDF("int") val df2 = Seq(1, 5).toDF("int2") checkAnswer( df.as("a").join(df2.as("b"), $"a.int" === $"b.int2", "left_anti"), Row(3) :: Nil) } ```
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org