Skip to content

Commit f23133f

Browse files
committed
bug fix
1 parent 47e0023 commit f23133f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sql/hive/src/main/scala/org/apache/spark/sql/hive/TableReader.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,8 @@ class HadoopTableReader(
180180
}
181181
}
182182

183-
val hivePartitionRDDs = verifyPartitionPath(partitionToDeserializer).map {
183+
val hivePartitionRDDs = verifyPartitionPath(partitionToDeserializer)
184+
.map { case (partition, partDeserializer) =>
184185
val partDesc = Utilities.getPartitionDesc(partition)
185186
val partPath = HiveShim.getDataLocationPath(partition)
186187
val inputPathStr = applyFilterIfNeeded(partPath, filterOpt)

0 commit comments

Comments
 (0)