Skip to content

Commit 3cd4e67

Browse files
committed
One more pass with fmt and clippy
1 parent 978b973 commit 3cd4e67

File tree

1 file changed

+4
-2
lines changed
  • datafusion/core/src/dataframe

1 file changed

+4
-2
lines changed

datafusion/core/src/dataframe/mod.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -460,9 +460,11 @@ impl DataFrame {
460460
}
461461
None => {
462462
// qualified_fields_with_unqualified_name returns Vec<(Option<&TableReference>, &FieldRef)>
463-
self.plan.schema().qualified_fields_with_unqualified_name(&column.name)
463+
self.plan
464+
.schema()
465+
.qualified_fields_with_unqualified_name(&column.name)
464466
.into_iter()
465-
.map(|field| Ok(field))
467+
.map(Ok)
466468
.collect::<Vec<_>>()
467469
}
468470
}

0 commit comments

Comments
 (0)