Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
match syntax
  • Loading branch information
josephsu committed Aug 14, 2014
commit c7e44f2c4ce282487e7f75fb2899256bceddd8d7
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,8 @@ private[parquet] object ParquetTypesConverter extends Logging {

val children = fs.listStatus(path).filterNot { status =>
val name = status.getPath.getName
name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME || FileOutputCommitter.TEMP_DIR_NAME
name(0) == '.' || name == FileOutputCommitter.SUCCEEDED_FILE_NAME ||
name == FileOutputCommitter.TEMP_DIR_NAME
}

// NOTE (lian): Parquet "_metadata" file can be very slow if the file consists of lots of row
Expand Down