Skip to content

Commit ba92c00

Browse files
committed
fix fmt.
1 parent fb5fbd1 commit ba92c00

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

datafusion/proto/src/physical_plan/from_proto.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,11 @@ impl TryFrom<&protobuf::PartitionedFile> for PartitionedFile {
559559
.map(|v| v.try_into())
560560
.collect::<Result<Vec<_>, _>>()?,
561561
range: val.range.as_ref().map(|v| v.try_into()).transpose()?,
562-
statistics: val.statistics.as_ref().map(|v| v.try_into().map(Arc::new)).transpose()?,
562+
statistics: val
563+
.statistics
564+
.as_ref()
565+
.map(|v| v.try_into().map(Arc::new))
566+
.transpose()?,
563567
extensions: None,
564568
})
565569
}

0 commit comments

Comments
 (0)