* garrow_execute_plan_wait: * @plan: A #GArrowExecutePlan. * @error: (nullable): Return location for a #GError or %NULL. * * Waits for finishing this plan. * * Returns: %TRUE on success, %FALSE on error. * * Since: 6.0.0 */
| 2557 | * Since: 6.0.0 |
| 2558 | */ |
| 2559 | gboolean |
| 2560 | garrow_execute_plan_wait(GArrowExecutePlan *plan, GError **error) |
| 2561 | { |
| 2562 | auto arrow_plan = garrow_execute_plan_get_raw(plan); |
| 2563 | arrow_plan->finished().Wait(); |
| 2564 | return garrow::check(error, arrow_plan->finished().status(), "[execute-plan][wait]"); |
| 2565 | } |
| 2566 | |
| 2567 | typedef struct GArrowCastOptionsPrivate_ |
| 2568 | { |
nothing calls this directly
no test coverage detected