Get a reference to a column's array by name. Note: A schema can currently have duplicate field names, in which case the first field will always be selected. This issue will be addressed in [ARROW-11178](https://issues.apache.org/jira/browse/ARROW-11178) # Panics Panics if the name is not in the schema.
(&self, name: &str)
| 607 | /// |
| 608 | /// Panics if the name is not in the schema. |
| 609 | fn index(&self, name: &str) -> &Self::Output { |
| 610 | self.column_by_name(name).unwrap() |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | #[cfg(test)] |
nothing calls this directly
no test coverage detected