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

Method create_physical_plan

graphlite/src/plan/optimizer.rs:388–394  ·  view source on GitHub ↗

Create physical plan from logical plan

(
        &self,
        logical_plan: LogicalPlan,
    )

Source from the content-addressed store, hash-verified

386
387 /// Create physical plan from logical plan
388 fn create_physical_plan(
389 &self,
390 logical_plan: LogicalPlan,
391 ) -> Result<PhysicalPlan, PlanningError> {
392 // Delegate to PhysicalBuilder
393 self.physical_builder.build(logical_plan)
394 }
395
396 /// Optimize physical plan
397 fn optimize_physical_plan(&self, plan: PhysicalPlan) -> Result<PhysicalPlan, PlanningError> {

Callers 4

plan_queryMethod · 0.80
plan_query_with_traceMethod · 0.80

Calls 1

buildMethod · 0.45

Tested by

no test coverage detected