pub fn project_schema(
schema: &ArrowSchema,
field_selection: &BTreeSet<String>,
) -> ArrowSchemaExpand description
Project a schema down to the named fields. Missing field names are silently dropped from the result.
Prefer try_project_schema, which returns an error listing any unknown
names. This non-erroring variant is retained for backward compatibility.