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

Function garrow_array_validate

c_glib/arrow-glib/basic-array.cpp:1300–1305  ·  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

1298 * Since: 20.0.0
1299 */
1300gboolean
1301garrow_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:

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