Github user concretevitamin commented on a diff in the pull request:
https://github.com/apache/spark/pull/1819#discussion_r15914067
--- 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 --
When in doubt, make up longer names: `SQLConfigOpts`, `HiveConfigOpts`. But
this is only possibly relevant in the future and should not block this PR.
---
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]