File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
datafusion/physical-plan/src Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -216,6 +216,8 @@ impl FilterDescription {
216216 /// field direclty.
217217 /// For example, nodes like [`RepartitionExec`] that let filters pass through it transparently
218218 /// use this to mark all parent filters as supported.
219+ ///
220+ /// [`RepartitionExec`]: crate::repartition::RepartitionExec
219221 pub fn all_parent_filters_supported (
220222 self ,
221223 parent_filters : Vec < Arc < dyn PhysicalExpr > > ,
@@ -235,6 +237,8 @@ impl FilterDescription {
235237 /// field direclty.
236238 /// For example, the default implementation of filter pushdwon in [`ExecutionPlan`]
237239 /// assumes that filters cannot be pushed down to children.
240+ ///
241+ /// [`ExecutionPlan`]: crate::ExecutionPlan
238242 pub fn all_parent_filters_unsupported (
239243 self ,
240244 parent_filters : Vec < Arc < dyn PhysicalExpr > > ,
You can’t perform that action at this time.
0 commit comments