We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978b973 commit 3cd4e67Copy full SHA for 3cd4e67
datafusion/core/src/dataframe/mod.rs
@@ -460,9 +460,11 @@ impl DataFrame {
460
}
461
None => {
462
// qualified_fields_with_unqualified_name returns Vec<(Option<&TableReference>, &FieldRef)>
463
- self.plan.schema().qualified_fields_with_unqualified_name(&column.name)
+ self.plan
464
+ .schema()
465
+ .qualified_fields_with_unqualified_name(&column.name)
466
.into_iter()
- .map(|field| Ok(field))
467
+ .map(Ok)
468
.collect::<Vec<_>>()
469
470
0 commit comments