pub trait EventPartitionCatalog {
// Required methods
fn contains_loaded_table(&self, relation: &RelationIdentity) -> bool;
fn table_names(&self) -> Result<Vec<String>, String>;
fn try_table_hierarchy(&self, name: &str) -> Result<TableHierarchy, String>;
}Required Methods§
fn contains_loaded_table(&self, relation: &RelationIdentity) -> bool
fn table_names(&self) -> Result<Vec<String>, String>
fn try_table_hierarchy(&self, name: &str) -> Result<TableHierarchy, String>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".