pub trait StorageEngine: Send + Sync {
// Required method
fn table(
&self,
catalog: &Catalog,
table: &TableReference,
) -> QuillSQLResult<TableBinding>;
}pub trait StorageEngine: Send + Sync {
// Required method
fn table(
&self,
catalog: &Catalog,
table: &TableReference,
) -> QuillSQLResult<TableBinding>;
}