Skip to content

Commit 43ba6f2

Browse files
authored
remove unused functions in SortExec (#16457)
1 parent 266daf8 commit 43ba6f2

File tree

1 file changed

+0
-10
lines changed
  • datafusion/physical-plan/src/sorts

1 file changed

+0
-10
lines changed

datafusion/physical-plan/src/sorts/sort.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -935,11 +935,6 @@ impl SortExec {
935935
}
936936
}
937937

938-
pub fn with_filter(mut self, filter: Arc<DynamicFilterPhysicalExpr>) -> Self {
939-
self.filter = Some(filter);
940-
self
941-
}
942-
943938
/// Input schema
944939
pub fn input(&self) -> &Arc<dyn ExecutionPlan> {
945940
&self.input
@@ -955,11 +950,6 @@ impl SortExec {
955950
self.fetch
956951
}
957952

958-
/// If `Some(filter)`, returns the filter expression that matches the state of the sort.
959-
pub fn filter(&self) -> Option<Arc<DynamicFilterPhysicalExpr>> {
960-
self.filter.clone()
961-
}
962-
963953
fn output_partitioning_helper(
964954
input: &Arc<dyn ExecutionPlan>,
965955
preserve_partitioning: bool,

0 commit comments

Comments
 (0)