File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed
datafusion/physical-plan/src Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -213,26 +213,6 @@ impl<T> FilterPushdownPropagation<T> {
213
213
}
214
214
}
215
215
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
-
236
216
/// Create a new [`FilterPushdownPropagation`] with the specified filter support.
237
217
pub fn with_filters ( filters : PredicateSupports ) -> Self {
238
218
Self {
You can’t perform that action at this time.
0 commit comments