File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
docs/source/library-user-guide Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,12 @@ format.
2525DataFusion has modular design, allowing individual crates to be re-used in other projects.
2626
2727This crate is a submodule of DataFusion that provides a query optimizer for logical plans, and
28- contains an extensive set of [ ` OptimizerRule ` ] s and [ ` PhysicalOptimizerRules ` ] that may rewrite the plan and/or its expressions so
28+ contains an extensive set of [ ` OptimizerRule ` ] s and [ ` PhysicalOptimizerRule ` ] s that may rewrite the plan and/or its expressions so
2929they execute more quickly while still computing the same result.
3030
3131[ `optimizerrule` ] : https://docs.rs/datafusion/latest/datafusion/optimizer/trait.OptimizerRule.html
32- [ `physicaloptimizerrules` ] : https://docs.rs/datafusion/latest/datafusion/physical_optimizer/trait.PhysicalOptimizerRule.html
32+ [ `physicaloptimizerrule` ] : https://docs.rs/datafusion/latest/datafusion/physical_optimizer/trait.PhysicalOptimizerRule.html
33+ [ `logicalplan` ] : https://docs.rs/datafusion/latest/datafusion/logical_expr/enum.LogicalPlan.html
3334
3435## Running the Optimizer
3536
@@ -75,7 +76,7 @@ Please refer to the
7576example to learn more about the general approach to writing optimizer rules and
7677then move onto studying the existing rules.
7778
78- ` OptimizerRule ` transforms one [ ' LogicalPlan' ] into another which
79+ ` OptimizerRule ` transforms one [ ` LogicalPlan ` ] into another which
7980computes the same results, but in a potentially more efficient
8081way. If there are no suitable transformations for the input plan,
8182the optimizer can simply return it as is.
You can’t perform that action at this time.
0 commit comments