Skip to content

Commit 57765cd

Browse files
authored
[fix] removed deprecated with_concurrency context method (#1200)
1 parent 6b964cb commit 57765cd

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

datafusion/src/execution/context.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -893,15 +893,6 @@ impl ExecutionConfig {
893893
Default::default()
894894
}
895895

896-
/// Deprecated. Use with_target_partitions instead.
897-
#[deprecated(
898-
since = "5.1.0",
899-
note = "This method is deprecated in favor of `with_target_partitions`."
900-
)]
901-
pub fn with_concurrency(self, n: usize) -> Self {
902-
self.with_target_partitions(n)
903-
}
904-
905896
/// Customize target_partitions
906897
pub fn with_target_partitions(mut self, n: usize) -> Self {
907898
// partition count must be greater than zero

0 commit comments

Comments
 (0)