Register a table UDF with this context
(&self, name: &str, fun: Arc<dyn TableFunctionImpl>)
| 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 | /// |