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

    https://github.com/apache/spark/pull/1959#discussion_r16628843
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/parquet/ParquetTypes.scala ---
    @@ -373,9 +373,11 @@ private[parquet] object ParquetTypesConverter extends 
Logging {
         }
         ParquetRelation.enableLogForwarding()
     
    +    // NOTE: Explicitly list "_temporary" because hadoop 0.23 removed the 
variable TEMP_DIR_NAME
    +    // from FileOutputCommitter. Check MAPREDUCE-5229 for the detail.
         val children = fs.listStatus(path).filterNot { status =>
           val name = status.getPath.getName
    -      name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME
    +      name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME || 
name == "_temporary"
    --- End diff --
    
    I agree with this. Just remove `.*` and `_*` except `_metadata`.


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