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

    https://github.com/apache/spark/pull/6683#discussion_r31867107
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SQLConf.scala ---
    @@ -43,9 +43,19 @@ private[spark] object SQLConf {
       val PARQUET_FILTER_PUSHDOWN_ENABLED = "spark.sql.parquet.filterPushdown"
       val PARQUET_USE_DATA_SOURCE_API = "spark.sql.parquet.useDataSourceApi"
     
    +  // The output committer class used by Parquet. The specified class needs 
to be a
    +  // subclass of org.apache.hadoop.mapreduce.OutputCommitter.  Typically, 
it's also a subclass of
    +  // org.apache.parquet.hadoop.ParquetOutputCommitter.
    +  //
    +  // NOTE:
    +  //
    +  //  1. Instead of SQLConf, this option *must be set in Hadoop 
Configuration*.
    +  //  2. This option overrides "spark.sql.sources.outputCommitterClass".
    +  val PARQUET_OUTPUT_COMMITTER_CLASS = 
"spark.sql.parquet.output.committer.class"
    +
       val ORC_FILTER_PUSHDOWN_ENABLED = "spark.sql.orc.filterPushdown"
     
    -  val HIVE_VERIFY_PARTITIONPATH = "spark.sql.hive.verifyPartitionPath"
    +  val HIVE_VERIFY_PARTITION_PATH = "spark.sql.hive.verifyPartitionPath"
    --- End diff --
    
    Changed this because the original variable name looks weird.


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