Github user gaborgsomogyi commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19893#discussion_r161308026
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/test/SharedSQLContext.scala ---
    @@ -17,4 +17,37 @@
     
     package org.apache.spark.sql.test
     
    -trait SharedSQLContext extends SQLTestUtils with SharedSparkSession
    +trait SharedSQLContext extends SQLTestUtils with SharedSparkSession {
    +
    +  /**
    +   * Suites extending [[SharedSQLContext]] are sharing resources (eg. 
SparkSession) in their tests.
    +   * Such resources are initialized by the suite before thread audit takes 
thread snapshot and
    --- End diff --
    
    Your suggestion solves one part of the problem. The other one lies here:
    
    ```
      protected override def beforeAll(): Unit = {
        initializeSession()
    
        // Ensure we have initialized the context before calling parent code
        super.beforeAll()
      }
    ```
    
    Session initialized before thread snapshot. This should also happen in the 
opposite order. Because I've seen the comment in the code I decided not to 
change it.



---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to