alamb commented on issue #11320:
URL: https://github.com/apache/datafusion/issues/11320#issuecomment-2218816573
> My thought was to have a parent `register_all_defaults` which delegates to
individual functions for registering defaults for catalogues, table factories,
etc.
I think this is a good idea.
If we want htat level of customizablility, perhaps we could make a builder
style interface. Something like 🤔
```rust
let builder = SessionStateBuilder::new()
.with_default_functions(false);
let state: SessionState = builder.build()?;
```
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]