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

    https://github.com/apache/spark/pull/17002#discussion_r102070142
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala 
---
    @@ -95,16 +95,26 @@ class SparkSession private(
       /**
        * State shared across sessions, including the `SparkContext`, cached 
data, listener,
        * and a catalog that interacts with external systems.
    +   *
    +   * This is internal to Spark and there is no guarantee on interface 
stability.
    +   *
    +   * @since 2.2.0
        */
    +  @InterfaceStability.Unstable
       @transient
    -  private[sql] lazy val sharedState: SharedState = {
    +  lazy val sharedState: SharedState = {
         existingSharedState.getOrElse(new SharedState(sparkContext))
       }
     
       /**
        * State isolated across sessions, including SQL configurations, 
temporary tables, registered
        * functions, and everything else that accepts a 
[[org.apache.spark.sql.internal.SQLConf]].
    +   *
    +   * This is internal to Spark and there is no guarantee on interface 
stability.
    +   *
    +   * @since 2.2.0
        */
    +  @InterfaceStability.Unstable
       @transient
       private[sql] lazy val sessionState: SessionState = {
    --- End diff --
    
    oops


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