* 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 */
| 766 | * Since: 20.0.0 |
| 767 | */ |
| 768 | gboolean |
| 769 | garrow_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 | |
| 775 | typedef struct GArrowFeatherWritePropertiesPrivate_ |
| 776 | { |
nothing calls this directly
no test coverage detected