Reports the latest [`RelationDesc`] of the rows produced by this [`CatalogEntry`], if it produces rows.
(&self)
| 2658 | /// Reports the latest [`RelationDesc`] of the rows produced by this [`CatalogEntry`], if it |
| 2659 | /// produces rows. |
| 2660 | pub fn relation_desc_latest(&self) -> Option<Cow<'_, RelationDesc>> { |
| 2661 | self.item.relation_desc(RelationVersionSelector::Latest) |
| 2662 | } |
| 2663 | |
| 2664 | /// Reports if the item has columns. |
| 2665 | pub fn has_columns(&self) -> bool { |
no test coverage detected