risingwave_batch::executor

Trait LookupExecutorBuilder

source
pub trait LookupExecutorBuilder: Send {
    // Required methods
    fn reset(&mut self);
    fn add_scan_range<'life0, 'async_trait>(
        &'life0 mut self,
        key_datums: Vec<Datum>,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
    fn build_executor<'life0, 'async_trait>(
        &'life0 mut self,
    ) -> Pin<Box<dyn Future<Output = Result<BoxedExecutor>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Used to build the executor for the inner side

Required Methods§

source

fn reset(&mut self)

source

fn add_scan_range<'life0, 'async_trait>( &'life0 mut self, key_datums: Vec<Datum>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

source

fn build_executor<'life0, 'async_trait>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Result<BoxedExecutor>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§

source§

impl LookupExecutorBuilder for FakeInnerSideExecutorBuilder

source§

impl<C: BatchTaskContext> LookupExecutorBuilder for risingwave_batch::executor::join::local_lookup_join::InnerSideExecutorBuilder<C>

source§

impl<S: StateStore> LookupExecutorBuilder for risingwave_batch::executor::join::distributed_lookup_join::InnerSideExecutorBuilder<S>