alamb opened a new issue, #3887: URL: https://github.com/apache/arrow-datafusion/issues/3887
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** While messing with thishttps://github.com/apache/arrow-datafusion/pull/3885 I found it quite confusing that `SessionConfig` is different than `ConfigOptions` and they had different ways of serializing / deserializing their values. The new `ConfigOptions` was added by @andygrove https://github.com/apache/arrow-datafusion/pull/2754 and we can now see and set them via environment variables etc and are documented 🎉 But it seems like `SessionConfig` is the old way and is still used (e.g. a field was just added by @Dandandan in https://github.com/apache/arrow-datafusion/pull/3846) **Describe the solution you'd like** It would be nice to unify the two (by moving all SessionConfig values into `ConfigOptions`) https://github.com/apache/arrow-datafusion/blob/b654fdea697b9aec1cb487e292dd288e5c9d09e3/datafusion/core/src/execution/context.rs#L1128-L1156 Which is what I believe this comment in to_props is talking about: https://github.com/apache/arrow-datafusion/blob/b654fdea697b9aec1cb487e292dd288e5c9d09e3/datafusion/core/src/execution/context.rs#L1282-L1289 **Describe alternatives you've considered** Leave split brained as is **Additional context** https://github.com/apache/arrow-datafusion/issues/3821 -- 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]
