Finalize the trace with the final plans
(self, logical_plan: LogicalPlan, physical_plan: PhysicalPlan)
| 114 | |
| 115 | /// Finalize the trace with the final plans |
| 116 | pub fn finalize(self, logical_plan: LogicalPlan, physical_plan: PhysicalPlan) -> PlanTrace { |
| 117 | PlanTrace { |
| 118 | steps: self.steps, |
| 119 | total_duration: self.start_time.elapsed(), |
| 120 | logical_plan, |
| 121 | physical_plan, |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | /// Trace a simple step with timing |
| 126 | pub fn trace_step( |
no test coverage detected