Trait query::dummy_catalog::TableProviderFactory

source ·
pub trait TableProviderFactory: Send + Sync {
    // Required method
    fn create<'life0, 'async_trait>(
        &'life0 self,
        region_id: RegionId,
        engine: RegionEngineRef,
    ) -> Pin<Box<dyn Future<Output = Result<Arc<dyn TableProvider>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn create<'life0, 'async_trait>( &'life0 self, region_id: RegionId, engine: RegionEngineRef, ) -> Pin<Box<dyn Future<Output = Result<Arc<dyn TableProvider>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§