* garrow_array_validate_full: * @array: A #GArrowArray. * @error: (nullable): Return location for a #GError or %NULL. * * Returns: %TRUE on success, %FALSE on error. * * Since: 20.0.0 */
| 1314 | * Since: 20.0.0 |
| 1315 | */ |
| 1316 | gboolean |
| 1317 | garrow_array_validate_full(GArrowArray *array, GError **error) |
| 1318 | { |
| 1319 | const auto arrow_array = garrow_array_get_raw(array); |
| 1320 | return garrow::check(error, arrow_array->ValidateFull(), "[array][validate-full]"); |
| 1321 | } |
| 1322 | |
| 1323 | /** |
| 1324 | * garrow_array_get_statistics: |
nothing calls this directly
no test coverage detected