* garrow_array_validate: * @array: A #GArrowArray. * @error: (nullable): Return location for a #GError or %NULL. * * Returns: %TRUE on success, %FALSE on error. * * Since: 20.0.0 */
| 1298 | * Since: 20.0.0 |
| 1299 | */ |
| 1300 | gboolean |
| 1301 | garrow_array_validate(GArrowArray *array, GError **error) |
| 1302 | { |
| 1303 | const auto arrow_array = garrow_array_get_raw(array); |
| 1304 | return garrow::check(error, arrow_array->Validate(), "[array][validate]"); |
| 1305 | } |
| 1306 | |
| 1307 | /** |
| 1308 | * garrow_array_validate_full: |
nothing calls this directly
no test coverage detected