* garrow_execute_plan_start: * @plan: A #GArrowExecutePlan. * * Starts this plan. * * Since: 6.0.0 */
| 2524 | * Since: 6.0.0 |
| 2525 | */ |
| 2526 | void |
| 2527 | garrow_execute_plan_start(GArrowExecutePlan *plan) |
| 2528 | { |
| 2529 | auto arrow_plan = garrow_execute_plan_get_raw(plan); |
| 2530 | arrow_plan->StartProducing(); |
| 2531 | } |
| 2532 | |
| 2533 | /** |
| 2534 | * garrow_execute_plan_stop: |
nothing calls this directly
no test coverage detected