TableFunctionImpl

Trait TableFunctionImpl 

Source
pub trait TableFunctionImpl:
    Debug
    + Sync
    + Send {
    // Required method
    fn call(&self, args: &[Expr]) -> Result<Arc<dyn TableProvider>>;
}
Expand description

A trait for table function implementations

Required Methods§

Source

fn call(&self, args: &[Expr]) -> Result<Arc<dyn TableProvider>>

Create a table provider

Implementors§