Skip to content

Commit 15443d5

Browse files
committed
remove unused methods
1 parent 6274bc1 commit 15443d5

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

datafusion/physical-plan/src/filter_pushdown.rs

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -213,26 +213,6 @@ impl<T> FilterPushdownPropagation<T> {
213213
}
214214
}
215215

216-
/// Create a new [`FilterPushdownPropagation`] that tells the parent node
217-
/// that all of the parent filters were pushed down as [`PredicateSupport::Exact`].
218-
pub fn exact(parent_filters: Vec<Arc<dyn PhysicalExpr>>) -> Self {
219-
let supported = PredicateSupports::all_supported(parent_filters);
220-
Self {
221-
filters: supported,
222-
updated_node: None,
223-
}
224-
}
225-
226-
/// Create a new [`FilterPushdownPropagation`] that tells the parent node
227-
/// that all of the parent filters were pushed down as [`PredicateSupport::Unsupported`].
228-
pub fn inexact(parent_filters: Vec<Arc<dyn PhysicalExpr>>) -> Self {
229-
let inexact = PredicateSupports::all_unsupported(parent_filters);
230-
Self {
231-
filters: inexact,
232-
updated_node: None,
233-
}
234-
}
235-
236216
/// Create a new [`FilterPushdownPropagation`] with the specified filter support.
237217
pub fn with_filters(filters: PredicateSupports) -> Self {
238218
Self {

0 commit comments

Comments
 (0)