| 514 | } |
| 515 | |
| 516 | ResultSet *ExecutionPlan_Profile(ExecutionPlan *plan) { |
| 517 | _ExecutionPlan_InitProfiling(plan->root); |
| 518 | ResultSet *rs = ExecutionPlan_Execute(plan); |
| 519 | _ExecutionPlan_FinalizeProfiling(plan->root); |
| 520 | return rs; |
| 521 | } |
| 522 | |
| 523 | //------------------------------------------------------------------------------ |
| 524 | // Execution plan free functions |
no test coverage detected