Returns the qualifier (if any) and [`FieldRef`] for a column at specific index within the schema.
(&self, i: usize)
| 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, |
no test coverage detected