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

Function garrow_array_validate_full

c_glib/arrow-glib/basic-array.cpp:1316–1321  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1314 * Since: 20.0.0
1315 */
1316gboolean
1317garrow_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:

Callers

nothing calls this directly

Calls 3

garrow_array_get_rawFunction · 0.70
checkFunction · 0.70
ValidateFullMethod · 0.45

Tested by

no test coverage detected