We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8fc32a commit c7e44f2Copy full SHA for c7e44f2
sql/core/src/main/scala/org/apache/spark/sql/parquet/ParquetTypes.scala
@@ -375,7 +375,8 @@ private[parquet] object ParquetTypesConverter extends Logging {
375
376
val children = fs.listStatus(path).filterNot { status =>
377
val name = status.getPath.getName
378
- name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME || FileOutputCommitter.TEMP_DIR_NAME
+ name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME ||
379
+ name == FileOutputCommitter.TEMP_DIR_NAME
380
}
381
382
// NOTE (lian): Parquet "_metadata" file can be very slow if the file consists of lots of row
0 commit comments