Struct datafusion::datasource::function::TableFunction
source · pub struct TableFunction { /* private fields */ }
Expand description
A table that uses a function to generate data
Implementations§
source§impl TableFunction
impl TableFunction
sourcepub fn new(name: String, fun: Arc<dyn TableFunctionImpl>) -> Self
pub fn new(name: String, fun: Arc<dyn TableFunctionImpl>) -> Self
Create a new table function
sourcepub fn create_table_provider(
&self,
args: &[Expr]
) -> Result<Arc<dyn TableProvider>>
pub fn create_table_provider( &self, args: &[Expr] ) -> Result<Arc<dyn TableProvider>>
Get the function implementation and generate a table
Auto Trait Implementations§
impl !RefUnwindSafe for TableFunction
impl Send for TableFunction
impl Sync for TableFunction
impl Unpin for TableFunction
impl !UnwindSafe for TableFunction
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more