Github user heary-cao commented on a diff in the pull request:

    https://github.com/apache/spark/pull/18914#discussion_r132837521
  
    --- Diff: sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala ---
    @@ -30,6 +30,15 @@ import org.apache.spark.TestUtils.{assertNotSpilled, 
assertSpilled}
     class JoinSuite extends QueryTest with SharedSQLContext {
       import testImplicits._
     
    +  override def afterEach(): Unit = {
    +    try {
    +      // Clear the cache table for test cases
    +      spark.sharedState.cacheManager.clearCache()
    --- End diff --
    
    It was a simple reason.
    ```
      test("broadcasted hash outer join operator selection") {
        spark.sharedState.cacheManager.clearCache()
        sql("CACHE TABLE testData")
        sql("CACHE TABLE testData2")
        Seq(
          ("SELECT * FROM testData LEFT JOIN testData2 ON key = a",
            classOf[BroadcastHashJoinExec]),
          ("SELECT * FROM testData RIGHT JOIN testData2 ON key = a where key = 
2",
            classOf[BroadcastHashJoinExec]),
          ("SELECT * FROM testData right join testData2 ON key = a and key = 2",
            classOf[BroadcastHashJoinExec])
        ).foreach(assertJoin)
        sql("UNCACHE TABLE testData")
      }
    ```
    the cache table and uncache table do not match. 



---
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

Reply via email to