MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / optimize_physical_plan

Method optimize_physical_plan

graphlite/src/plan/optimizer.rs:397–400  ·  view source on GitHub ↗

Optimize physical plan

(&self, plan: PhysicalPlan)

Source from the content-addressed store, hash-verified

395
396 /// Optimize physical plan
397 fn optimize_physical_plan(&self, plan: PhysicalPlan) -> Result<PhysicalPlan, PlanningError> {
398 // Delegate to PhysicalOptimizer
399 self.physical_optimizer.optimize(plan)
400 }
401
402 /// Generate alternative join orders
403 #[allow(dead_code)] // ROADMAP v0.3.0 - Join reordering for cost-based optimization (see ROADMAP.md §5)

Callers 2

plan_queryMethod · 0.80
plan_query_with_traceMethod · 0.80

Calls 1

optimizeMethod · 0.45

Tested by

no test coverage detected