| 18 | /// Information about a catalog |
| 19 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 20 | pub struct CatalogInfo { |
| 21 | /// Name of the catalog |
| 22 | pub name: String, |
| 23 | /// Schema describing the catalog's capabilities |
| 24 | pub schema: CatalogSchema, |
| 25 | /// List of supported operations |
| 26 | pub supported_operations: Vec<String>, |
| 27 | } |
| 28 | |
| 29 | /// Unified catalog manager - The single external interface |
| 30 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected