MCPcopy Create free account
hub / github.com/apache/datafusion / qualified_field

Method qualified_field

datafusion/common/src/dfschema.rs:377–379  ·  view source on GitHub ↗

Returns the qualifier (if any) and [`FieldRef`] for a column at specific index within the schema.

(&self, i: usize)

Source from the content-addressed store, hash-verified

375 /// Returns the qualifier (if any) and [`FieldRef`] for a column at specific
376 /// index within the schema.
377 pub fn qualified_field(&self, i: usize) -> (Option<&TableReference>, &FieldRef) {
378 (self.field_qualifiers[i].as_ref(), self.field(i))
379 }
380
381 pub fn index_of_column_by_name(
382 &self,

Callers 15

cast_subqueryFunction · 0.80
head_output_exprMethod · 0.80
selectMethod · 0.80
insert_to_planMethod · 0.80
order_by_to_sort_exprMethod · 0.80
drop_columnsMethod · 0.80
resolve_outer_referenceFunction · 0.80

Calls 2

as_refMethod · 0.45
fieldMethod · 0.45

Tested by

no test coverage detected