pub trait Catalog: Debug {
    // Required methods
    fn add_table_function(
        &mut self,
        info: TableFunction
    ) -> Result<ObjectId, CatalogError>;
    fn get_function(&self, name: &str) -> Option<FunctionEntry<'_>>;
}

Required Methods§

Implementors§