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

Function garrow_array_builder_append_null

c_glib/arrow-glib/array-builder.cpp:782–788  ·  view source on GitHub ↗

* garrow_array_builder_append_null: * @builder: A #GArrowArrayBuilder. * @error: (nullable): Return location for a #GError or %NULL. * * Returns: %TRUE on success, %FALSE if there was an error. * * Since: 3.0.0 */

Source from the content-addressed store, hash-verified

780 * Since: 3.0.0
781 */
782gboolean
783garrow_array_builder_append_null(GArrowArrayBuilder *builder, GError **error)
784{
785 auto arrow_builder = garrow_array_builder_get_raw(builder);
786 auto status = arrow_builder->AppendNull();
787 return garrow_error_check(error, status, "[array-builder][append-null]");
788}
789
790/**
791 * garrow_array_builder_append_nulls:

Calls 3

garrow_error_checkFunction · 0.85
AppendNullMethod · 0.45

Tested by

no test coverage detected