Skip to content

Commit c78a590

Browse files
committed
fix doc
1 parent ca391c1 commit c78a590

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-plan/src/execution_plan.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ pub trait ExecutionPlan: Debug + DisplayAs + Send + Sync {
483483
/// That is, a query such as `WHERE a = 1 AND b = 2` would return two
484484
/// filters: `a = 1` and `b = 2`.
485485
/// They can always be assembled into a single filter using
486-
/// [`crate::physical_expr::split_conjunction`].
486+
/// [`split_conjunction`][datafusion_physical_expr::split_conjunction].
487487
fn filters_for_pushdown(&self) -> Result<Vec<Arc<dyn PhysicalExpr>>> {
488488
Ok(Vec::new())
489489
}

0 commit comments

Comments
 (0)