From 2a343d82e6e0aa9f9fda495192031a4f0988d42d Mon Sep 17 00:00:00 2001 From: Remi Dettai Date: Fri, 29 Oct 2021 11:23:13 +0200 Subject: [PATCH] [fix] removed deprecated with_concurrency --- datafusion/src/execution/context.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/datafusion/src/execution/context.rs b/datafusion/src/execution/context.rs index bb23b3f4e91cc..01484568616b5 100644 --- a/datafusion/src/execution/context.rs +++ b/datafusion/src/execution/context.rs @@ -893,15 +893,6 @@ impl ExecutionConfig { Default::default() } - /// Deprecated. Use with_target_partitions instead. - #[deprecated( - since = "5.1.0", - note = "This method is deprecated in favor of `with_target_partitions`." - )] - pub fn with_concurrency(self, n: usize) -> Self { - self.with_target_partitions(n) - } - /// Customize target_partitions pub fn with_target_partitions(mut self, n: usize) -> Self { // partition count must be greater than zero