Returns a new [`SessionStateBuilder`] with default features. This is equivalent to calling [`Self::new()`] followed by [`Self::with_default_features()`]. ``` use datafusion::execution::session_state::SessionStateBuilder; // Create a new SessionState with default features let session_state = SessionStateBuilder::new_with_default_features() .with_session_id("my_session".to_string()) .build(); ```
()
| 1220 | /// .build(); |
| 1221 | /// ``` |
| 1222 | pub fn new_with_default_features() -> Self { |
| 1223 | Self::new().with_default_features() |
| 1224 | } |
| 1225 | |
| 1226 | /// Set the session id. |
| 1227 | pub fn with_session_id(mut self, session_id: String) -> Self { |
nothing calls this directly
no test coverage detected