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

Function garrow_table_validate_full

c_glib/arrow-glib/table.cpp:768–773  ·  view source on GitHub ↗

* garrow_table_validate_full * @table: A #GArrowTable * @error: (nullable): Return location for a #GError or %NULL. * * Validate the given table. This is an extensive validation. * * Returns: %TRUE on success, %FALSE on error. * * Since: 20.0.0 */

Source from the content-addressed store, hash-verified

766 * Since: 20.0.0
767 */
768gboolean
769garrow_table_validate_full(GArrowTable *table, GError **error)
770{
771 const auto arrow_table = garrow_table_get_raw(table);
772 return garrow::check(error, arrow_table->ValidateFull(), "[table][validate-full]");
773}
774
775typedef struct GArrowFeatherWritePropertiesPrivate_
776{

Callers

nothing calls this directly

Calls 3

garrow_table_get_rawFunction · 0.85
checkFunction · 0.70
ValidateFullMethod · 0.45

Tested by

no test coverage detected