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

    https://github.com/apache/spark/pull/23130#discussion_r236233074
  
    --- Diff: 
sql/core/src/main/scala/org/apache/spark/sql/execution/DataSourceScanExec.scala 
---
    @@ -388,7 +388,7 @@ case class FileSourceScanExec(
         logInfo(s"Planning with ${bucketSpec.numBuckets} buckets")
         val filesGroupedToBuckets =
           selectedPartitions.flatMap { p =>
    -        p.files.map { f =>
    +        p.files.filter(_.getLen > 0).map { f =>
    --- End diff --
    
    It's non-critical path in terms of performance. Should be okay.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to