MCPcopy Create free account
hub / github.com/apache/arrow / garrow_execute_plan_wait

Function garrow_execute_plan_wait

c_glib/arrow-glib/compute.cpp:2559–2565  ·  view source on GitHub ↗

* 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 */

Source from the content-addressed store, hash-verified

2557 * Since: 6.0.0
2558 */
2559gboolean
2560garrow_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
2567typedef struct GArrowCastOptionsPrivate_
2568{

Callers

nothing calls this directly

Calls 5

finishedMethod · 0.80
checkFunction · 0.70
WaitMethod · 0.45
statusMethod · 0.45

Tested by

no test coverage detected