From 58f371cfd1cc69874f0a669dab30e55340b385db Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Sun, 15 Sep 2024 21:49:16 -0500 Subject: [PATCH] Remove deprecated config setup functions These were deprecated since v 32. --- datafusion/core/src/execution/context/mod.rs | 19 ------------- .../core/src/execution/session_state.rs | 27 ------------------- 2 files changed, 46 deletions(-) diff --git a/datafusion/core/src/execution/context/mod.rs b/datafusion/core/src/execution/context/mod.rs index 621b214818e9..27c0e9c83222 100644 --- a/datafusion/core/src/execution/context/mod.rs +++ b/datafusion/core/src/execution/context/mod.rs @@ -312,13 +312,6 @@ impl SessionContext { Self::new_with_config_rt(config, runtime) } - /// Creates a new `SessionContext` using the provided - /// [`SessionConfig`] and a new [`RuntimeEnv`]. - #[deprecated(since = "32.0.0", note = "Use SessionContext::new_with_config")] - pub fn with_config(config: SessionConfig) -> Self { - Self::new_with_config(config) - } - /// Creates a new `SessionContext` using the provided /// [`SessionConfig`] and a [`RuntimeEnv`]. /// @@ -341,13 +334,6 @@ impl SessionContext { Self::new_with_state(state) } - /// Creates a new `SessionContext` using the provided - /// [`SessionConfig`] and a [`RuntimeEnv`]. - #[deprecated(since = "32.0.0", note = "Use SessionState::new_with_config_rt")] - pub fn with_config_rt(config: SessionConfig, runtime: Arc) -> Self { - Self::new_with_config_rt(config, runtime) - } - /// Creates a new `SessionContext` using the provided [`SessionState`] pub fn new_with_state(state: SessionState) -> Self { Self { @@ -404,11 +390,6 @@ impl SessionContext { ctx } - /// Creates a new `SessionContext` using the provided [`SessionState`] - #[deprecated(since = "32.0.0", note = "Use SessionContext::new_with_state")] - pub fn with_state(state: SessionState) -> Self { - Self::new_with_state(state) - } /// Returns the time this `SessionContext` was created pub fn session_start_time(&self) -> DateTime { self.session_start_time diff --git a/datafusion/core/src/execution/session_state.rs b/datafusion/core/src/execution/session_state.rs index 5e8d22b6ccbc..f656fae4016f 100644 --- a/datafusion/core/src/execution/session_state.rs +++ b/datafusion/core/src/execution/session_state.rs @@ -258,17 +258,6 @@ impl SessionState { .build() } - /// Returns new [`SessionState`] using the provided - /// [`SessionConfig`] and [`RuntimeEnv`]. - #[deprecated(since = "32.0.0", note = "Use SessionStateBuilder")] - pub fn with_config_rt(config: SessionConfig, runtime: Arc) -> Self { - SessionStateBuilder::new() - .with_config(config) - .with_runtime_env(runtime) - .with_default_features() - .build() - } - /// Returns new [`SessionState`] using the provided /// [`SessionConfig`], [`RuntimeEnv`], and [`CatalogProviderList`] #[deprecated(since = "40.0.0", note = "Use SessionStateBuilder")] @@ -285,22 +274,6 @@ impl SessionState { .build() } - /// Returns new [`SessionState`] using the provided - /// [`SessionConfig`] and [`RuntimeEnv`]. - #[deprecated(since = "32.0.0", note = "Use SessionStateBuilder")] - pub fn with_config_rt_and_catalog_list( - config: SessionConfig, - runtime: Arc, - catalog_list: Arc, - ) -> Self { - SessionStateBuilder::new() - .with_config(config) - .with_runtime_env(runtime) - .with_catalog_list(catalog_list) - .with_default_features() - .build() - } - pub(crate) fn resolve_table_ref( &self, table_ref: impl Into,