File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
spark-3.4/org/apache/spark/sql/comet/shims
spark-3.5/org/apache/spark/sql/comet/shims Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ trait ShimCometScanExec {
152152 Seq .tabulate(bucketSpec.numBuckets) { bucketId =>
153153 FilePartition (
154154 bucketId,
155- prunedFilesGroupedToBuckets.getOrElse(bucketId, Seq .empty).toArray )
155+ prunedFilesGroupedToBuckets.getOrElse(bucketId, Array .empty[ PartitionedFile ]) )
156156 }
157157 }
158158 }
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ trait ShimCometScanExec {
154154 Seq .tabulate(bucketSpec.numBuckets) { bucketId =>
155155 FilePartition (
156156 bucketId,
157- prunedFilesGroupedToBuckets.getOrElse(bucketId, Seq .empty).toArray )
157+ prunedFilesGroupedToBuckets.getOrElse(bucketId, Array .empty[ PartitionedFile ]) )
158158 }
159159 }
160160 }
You can’t perform that action at this time.
0 commit comments