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

Function garrow_array_validate

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

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

Source from the content-addressed store, hash-verified

1297 * Since: 20.0.0
1298 */
1299gboolean
1300garrow_array_validate(GArrowArray *array, GError **error)
1301{
1302 const auto arrow_array = garrow_array_get_raw(array);
1303 return garrow::check(error, arrow_array->Validate(), "[array][validate]");
1304}
1305
1306/**
1307 * garrow_array_validate_full:

Callers

nothing calls this directly

Calls 3

garrow_array_get_rawFunction · 0.70
checkFunction · 0.70
ValidateMethod · 0.45

Tested by

no test coverage detected