alamb commented on code in PR #11642: URL: https://github.com/apache/datafusion/pull/11642#discussion_r1690388470
########## datafusion/core/src/execution/session_state.rs: ########## @@ -74,10 +74,23 @@ use std::fmt::Debug; use std::sync::Arc; use uuid::Uuid; -/// Execution context for registering data sources and executing queries. -/// See [`SessionContext`] for a higher level API. +/// `SessionState` contains all the necessary state to plan and execute queries, +/// such as configuration, functions, and runtime environment. Please see the +/// documentation on [`SessionContext`] for more information. Review Comment: I wanted to make it clear that SessionContext not only has a higher level API it also has a good description of the differences between the structures: https://docs.rs/datafusion/latest/datafusion/execution/context/struct.SessionContext.html#sessioncontext-sessionstate-and-taskcontext -- 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]
