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

    https://github.com/apache/spark/pull/16826#discussion_r103064385
  
    --- Diff: 
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveSessionState.scala ---
    @@ -17,89 +17,50 @@
     
     package org.apache.spark.sql.hive
     
    +import org.apache.spark.SparkContext
     import org.apache.spark.sql._
    -import org.apache.spark.sql.catalyst.analysis.Analyzer
    -import org.apache.spark.sql.execution.SparkPlanner
    +import org.apache.spark.sql.catalyst.analysis.{Analyzer, FunctionRegistry}
    +import org.apache.spark.sql.catalyst.parser.ParserInterface
    +import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan
    +import org.apache.spark.sql.execution.{QueryExecution, SparkPlanner, 
SparkSqlParser}
     import org.apache.spark.sql.execution.datasources._
     import org.apache.spark.sql.hive.client.HiveClient
    -import org.apache.spark.sql.internal.SessionState
    +import org.apache.spark.sql.internal.{SessionState, SharedState, SQLConf}
    +import org.apache.spark.sql.streaming.StreamingQueryManager
     
     
     /**
      * A class that holds all session-specific state in a given 
[[SparkSession]] backed by Hive.
      */
    -private[hive] class HiveSessionState(sparkSession: SparkSession)
    -  extends SessionState(sparkSession) {
    -
    -  self =>
    -
    -  /**
    -   * A Hive client used for interacting with the metastore.
    -   */
    -  lazy val metadataHive: HiveClient =
    -    
sparkSession.sharedState.externalCatalog.asInstanceOf[HiveExternalCatalog].client.newSession()
    -
    -  /**
    -   * Internal catalog for managing table and database states.
    -   */
    -  override lazy val catalog = {
    -    new HiveSessionCatalog(
    -      
sparkSession.sharedState.externalCatalog.asInstanceOf[HiveExternalCatalog],
    -      sparkSession.sharedState.globalTempViewManager,
    -      sparkSession,
    -      functionResourceLoader,
    -      functionRegistry,
    +private[hive] class HiveSessionState(
    +    sparkContext: SparkContext,
    +    sharedState: SharedState,
    +    conf: SQLConf,
    +    experimentalMethods: ExperimentalMethods,
    +    functionRegistry: FunctionRegistry,
    +    override val catalog: HiveSessionCatalog,
    +    sqlParser: ParserInterface,
    +    val metadataHive: HiveClient,
    +    override val analyzer: Analyzer,
    --- End diff --
    
    why is this a `override val`? keep it consistent with other params


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