We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca391c1 commit c78a590Copy full SHA for c78a590
datafusion/physical-plan/src/execution_plan.rs
@@ -483,7 +483,7 @@ pub trait ExecutionPlan: Debug + DisplayAs + Send + Sync {
483
/// That is, a query such as `WHERE a = 1 AND b = 2` would return two
484
/// filters: `a = 1` and `b = 2`.
485
/// They can always be assembled into a single filter using
486
- /// [`crate::physical_expr::split_conjunction`].
+ /// [`split_conjunction`][datafusion_physical_expr::split_conjunction].
487
fn filters_for_pushdown(&self) -> Result<Vec<Arc<dyn PhysicalExpr>>> {
488
Ok(Vec::new())
489
}
0 commit comments