Check if a catalog exists # Arguments `catalog_name` - Name of the catalog to check # Returns `true` if catalog exists, `false` otherwise
(&self, catalog_name: &str)
| 157 | /// # Returns |
| 158 | /// * `true` if catalog exists, `false` otherwise |
| 159 | pub fn has_catalog(&self, catalog_name: &str) -> bool { |
| 160 | self.registry.has_catalog(catalog_name) |
| 161 | } |
| 162 | |
| 163 | /// Get information about all available catalogs |
| 164 | /// |
no outgoing calls
no test coverage detected