pub trait TableProvider<P>{
// Required method
fn get_table(
&self,
canonical_name: &str,
) -> ExecutorResult<Arc<ExecutorTable<P>>>;
}Expand description
Trait for providing table access to the executor.
pub trait TableProvider<P>{
// Required method
fn get_table(
&self,
canonical_name: &str,
) -> ExecutorResult<Arc<ExecutorTable<P>>>;
}Trait for providing table access to the executor.