File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
datafusion/expr/src/logical_plan Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -882,6 +882,13 @@ impl LogicalPlan {
882882/// to perform mutable operations via [`Self::update_plan_from_children`].
883883/// After mutating the `LogicalPlanContext.children`, or after creating the `LogicalPlanContext`,
884884/// call `update_plan_from_children` to sync.
885+ ///
886+ /// See also:
887+ /// - [`datafusion_common::tree_node::TreeNode`] trait for tree traversal and mutation utilities.
888+ /// - [`datafusion_common::tree_node::ConcreteTreeNode`] trait for integrating with the tree node utilities.
889+ /// - [`datafusion::physical_plan::tree_node::PlanContext`] for a similar context for physical plans.
890+ ///
891+ /// [`datafusion::physical_plan::tree_node::PlanContext`]: https://docs.rs/datafusion/latest/datafusion/physical_plan/tree_node/struct.PlanContext.html
885892#[ derive( Debug , Clone ) ]
886893pub struct LogicalPlanContext < T : Sized > {
887894 /// The logical plan associated with this context.
You can’t perform that action at this time.
0 commit comments