MCPcopy Create free account
hub / github.com/apache/datafusion / call

Method call

datafusion/catalog/src/table.rs:557–561  ·  view source on GitHub ↗
(&self, _exprs: &[Expr])

Source from the content-addressed store, hash-verified

555 note = "Implement `TableFunctionImpl::call_with_args` instead"
556 )]
557 fn call(&self, _exprs: &[Expr]) -> Result<Arc<dyn TableProvider>> {
558 internal_err!(
559 "TableFunctionImpl::call is not implemented. Implement TableFunctionImpl::call_with_args instead."
560 )
561 }
562
563 /// Create a table provider
564 fn call_with_args(&self, args: TableFunctionArgs) -> Result<Arc<dyn TableProvider>> {

Implementers 7

simple_udtf.rsdatafusion-examples/examples/udf/simpl
table_list_udtf.rsdatafusion-examples/examples/udf/table
user_defined_table_functions.rsdatafusion/core/tests/user_defined/use
test_udtf_type_coerciondatafusion/core/tests/user_defined/use
udtf.rsdatafusion/ffi/src/udtf.rs
generate_series.rsdatafusion/functions-table/src/generat
functions.rsdatafusion-cli/src/functions.rs

Calls

no outgoing calls