Skip to main content

PhysicalFlushCatalogProvider

Trait PhysicalFlushCatalogProvider 

Source
pub trait PhysicalFlushCatalogProvider: Send + Sync {
    // Required method
    fn physical_table<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>(
        &'life0 self,
        catalog: &'life1 str,
        schema: &'life2 str,
        table_name: &'life3 str,
        query_ctx: &'life4 QueryContext,
    ) -> Pin<Box<dyn Future<Output = Result<Option<PhysicalTableMetadata>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait,
             'life2: 'async_trait,
             'life3: 'async_trait,
             'life4: 'async_trait;
}

Required Methods§

Source

fn physical_table<'life0, 'life1, 'life2, 'life3, 'life4, 'async_trait>( &'life0 self, catalog: &'life1 str, schema: &'life2 str, table_name: &'life3 str, query_ctx: &'life4 QueryContext, ) -> Pin<Box<dyn Future<Output = Result<Option<PhysicalTableMetadata>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait, 'life3: 'async_trait, 'life4: 'async_trait,

Implementors§