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

    https://github.com/apache/spark/pull/1819#discussion_r15913270
  
    --- Diff: 
sql/hive/src/main/scala/org/apache/spark/sql/hive/HiveContext.scala ---
    @@ -78,6 +78,14 @@ class HiveContext(sc: SparkContext) extends 
SQLContext(sc) {
       // Change the default SQL dialect to HiveQL
       override private[spark] def dialect: String = getConf(SQLConf.DIALECT, 
"hiveql")
     
    +  /**
    +   * When true, enables an experimental feature where metastore tables 
that use the parquet SerDe
    +   * are automatically converted to use the Spark SQL parquet table scan, 
instead of the Hive
    +   * SerDe.
    +   */
    +  private[spark] def convertMetastoreParquet: Boolean =
    +    getConf("spark.sql.hive.convertMetastoreParquet", "false") == "true"
    --- End diff --
    
    I am going to test this PR soon. In the meantime would it make sense to 
only put this in `SQLConf` (as well as a field of the key string in the 
singleton object), making that class the central place that stores SQL configs? 


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