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

    https://github.com/apache/spark/pull/14757#discussion_r75804066
  
    --- Diff: 
sql/hive/src/main/scala/org/apache/spark/sql/hive/test/TestHive.scala ---
    @@ -139,12 +139,9 @@ private[hive] class TestHiveSparkSession(
     
       assume(sc.conf.get(CATALOG_IMPLEMENTATION) == "hive")
     
    -  // TODO: Let's remove HiveSharedState and TestHiveSessionState. 
Otherwise,
    -  // we are not really testing the reflection logic based on the setting of
    -  // CATALOG_IMPLEMENTATION.
       @transient
    -  override lazy val sharedState: HiveSharedState = {
    -    existingSharedState.getOrElse(new HiveSharedState(sc))
    +  override lazy val sharedState: SharedState = {
    --- End diff --
    
    `sharedState` in `SparkSession` is unable to access the 
`existingSharedState` defined in `TestHiveSparkSession`.  We are unable to 
override it because [it is 
private](https://github.com/apache/spark/blob/18c2c92580bdc27aa5129d9e7abda418a3633ea6/sql/core/src/main/scala/org/apache/spark/sql/SparkSession.scala#L55).
 


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to