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

Function garrow_table_validate

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

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

Source from the content-addressed store, hash-verified

748 * Since: 20.0.0
749 */
750gboolean
751garrow_table_validate(GArrowTable *table, GError **error)
752{
753 const auto arrow_table = garrow_table_get_raw(table);
754 return garrow::check(error, arrow_table->Validate(), "[table][validate]");
755}
756
757/**
758 * garrow_table_validate_full

Callers

nothing calls this directly

Calls 3

garrow_table_get_rawFunction · 0.85
checkFunction · 0.70
ValidateMethod · 0.45

Tested by

no test coverage detected