MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / optimize

Function optimize

nodedb-sql/src/optimizer/mod.rs:10–13  ·  view source on GitHub ↗

Apply all optimization passes to a plan.

(plan: SqlPlan)

Source from the content-addressed store, hash-verified

8
9/// Apply all optimization passes to a plan.
10pub fn optimize(plan: SqlPlan) -> SqlPlan {
11 let plan = point_get::optimize(plan);
12 predicate_pushdown::optimize(plan)
13}

Callers 1

plan_statementsFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected