* 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 */
| 2509 | * Since: 6.0.0 |
| 2510 | */ |
| 2511 | gboolean |
| 2512 | garrow_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: |
nothing calls this directly
no test coverage detected