Skip to content

Commit

Permalink
fix: Use filePath instead of pathUri
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Nov 27, 2024
1 parent c3ad26e commit 76af6ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3222,7 +3222,7 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim
val fileBuilder = OperatorOuterClass.SparkPartitionedFile.newBuilder()
partitionVals.foreach(fileBuilder.addPartitionValues)
fileBuilder
.setFilePath(file.pathUri.toString)
.setFilePath(file.filePath.toUri.toString)
.setStart(file.start)
.setLength(file.length)
.setFileSize(file.fileSize)
Expand Down

0 comments on commit 76af6ca

Please sign in to comment.