* garrow_execute_plan_stop: * @plan: A #GArrowExecutePlan. * * Stops this plan. * * Since: 6.0.0 */
| 2539 | * Since: 6.0.0 |
| 2540 | */ |
| 2541 | void |
| 2542 | garrow_execute_plan_stop(GArrowExecutePlan *plan) |
| 2543 | { |
| 2544 | auto arrow_plan = garrow_execute_plan_get_raw(plan); |
| 2545 | arrow_plan->StopProducing(); |
| 2546 | } |
| 2547 | |
| 2548 | /** |
| 2549 | * garrow_execute_plan_wait: |
nothing calls this directly
no test coverage detected