wypoon commented on PR #9233: URL: https://github.com/apache/iceberg/pull/9233#issuecomment-1867048740
I ran `TestSPJWithBucketing` on Spark 3.4 and I do see that `testMergeSPJwithCondition` passes and `testMergeSPJwithoutCondition` does not (on Spark 3.5 both fail). I believe that the reason the test results are different between Spark 3.4 and 3.5 is ``` % diff spark/v3.4/spark-extensions/src/main/scala/org/apache/spark/sql/catalyst/optimizer/ReplaceStaticInvoke.scala spark/v3.5/spark-extensions/src/main/scala/org/apache/spark/sql/catalyst/optimizer/ReplaceStaticInvoke.scala 25a26 > import org.apache.spark.sql.catalyst.plans.FullOuter 61c62 < case j @ Join(_, _, _, Some(condition), _) => --- > case j @ Join(_, _, FullOuter, Some(condition), _) => ``` -- 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]
