Github user liancheng commented on a diff in the pull request:
https://github.com/apache/spark/pull/1691#discussion_r15659587
--- Diff:
sql/core/src/main/scala/org/apache/spark/sql/parquet/ParquetTypes.scala ---
@@ -373,9 +373,10 @@ private[parquet] object ParquetTypesConverter extends
Logging {
}
ParquetRelation.enableLogForwarding()
- val children = fs.listStatus(path).filterNot {
- _.getPath.getName == FileOutputCommitter.SUCCEEDED_FILE_NAME
- }
+ val children = fs.listStatus(path).filterNot(
+ status => (status.getPath.getName.charAt(0) == '.' ||
+ status.getPath.getName ==
FileOutputCommitter.SUCCEEDED_FILE_NAME)
+ )
--- End diff --
I'd prefer to reformat these lines a bit:
```scala
val children = fs.listStatus(path).filterNot { status =>
val name = status.getPath.getName
name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME
}
```
---
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.
---