Skip to content

Commit 7d22bda

Browse files
authored
Minor: cargo fmt to fix CI (#14487)
1 parent e854228 commit 7d22bda

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

datafusion/expr/src/logical_plan/builder.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1906,9 +1906,7 @@ pub fn unnest_with_options(
19061906
.extend(std::iter::repeat(index).take(transformed_columns.len()));
19071907
Ok(transformed_columns
19081908
.iter()
1909-
.map(|(col, field)| {
1910-
(col.relation.to_owned(), field.to_owned())
1911-
})
1909+
.map(|(col, field)| (col.relation.to_owned(), field.to_owned()))
19121910
.collect())
19131911
}
19141912
None => {

0 commit comments

Comments
 (0)