alamb commented on issue #9529: URL: https://github.com/apache/arrow-datafusion/issues/9529#issuecomment-1987168988
@milenkovicm Is there a reason you don't want to put the configuration directly on the `FunctionFactory` (e.g. on the `CustomFunctionFactory` in https://github.com/apache/arrow-datafusion/pull/9482)? If not, perhaps we could add an API like `SessionConfig.with_extension_options`: ```rust let mut session_config = SessionConfig::new() .with_information_schema(true) // register torch factory configuration .with_extension_options(TorchConfig::default()) ``` -- 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]
