alamb commented on issue #9203:
URL: 
https://github.com/apache/arrow-datafusion/issues/9203#issuecomment-1946222762

   As it came up on https://github.com/apache/arrow-datafusion/pull/9226, here 
is what I think this ticket requires:
   
   1. Add a function to `FunctionRegistry` 
https://github.com/apache/arrow-datafusion/blob/85be1bc5538661b58ca90fb1e042d8d840c9f693/datafusion/execution/src/registry.rs#L26
   
   ```rust
       /// Register a table UDF with this context
       pub fn register_udtf(&self, name: &str, fun: Arc<dyn TableFunctionImpl>) 
-> Result<Arc<dyn TableFunctionImpl>> {
          // default return not implemented error 
       }
   ```
   
   Implement that trait method for `SessionContext`
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to