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

Method register_udtf

datafusion/core/src/execution/context/mod.rs:1602–1604  ·  view source on GitHub ↗

Register a table UDF with this context

(&self, name: &str, fun: Arc<dyn TableFunctionImpl>)

Source from the content-addressed store, hash-verified

1600
1601 /// Register a table UDF with this context
1602 pub fn register_udtf(&self, name: &str, fun: Arc<dyn TableFunctionImpl>) {
1603 self.state.write().register_udtf(name, fun)
1604 }
1605
1606 /// Registers a scalar UDF within this context.
1607 ///

Callers 13

simple_udtfFunction · 0.45
table_list_udtfFunction · 0.45
create_functionMethod · 0.45
test_deregister_udtfFunction · 0.45
test_udtf_type_coercionFunction · 0.45
main_innerFunction · 0.45
test_metadata_cacheFunction · 0.45

Calls 1

writeMethod · 0.45