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

Function garrow_execute_plan_validate

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

* garrow_execute_plan_validate: * @plan: A #GArrowExecutePlan. * @error: (nullable): Return location for a #GError or %NULL. * * Returns: %TRUE on success, %FALSE on error. * * Since: 6.0.0 */

Source from the content-addressed store, hash-verified

2509 * Since: 6.0.0
2510 */
2511gboolean
2512garrow_execute_plan_validate(GArrowExecutePlan *plan, GError **error)
2513{
2514 auto arrow_plan = garrow_execute_plan_get_raw(plan);
2515 return garrow::check(error, arrow_plan->Validate(), "[execute-plan][validate]");
2516}
2517
2518/**
2519 * garrow_execute_plan_start:

Callers

nothing calls this directly

Calls 3

checkFunction · 0.70
ValidateMethod · 0.45

Tested by

no test coverage detected