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

Function garrow_struct_field_options_new_raw

c_glib/arrow-glib/compute.cpp:11629–11638  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11627}
11628
11629GArrowStructFieldOptions *
11630garrow_struct_field_options_new_raw(
11631 const arrow::compute::StructFieldOptions *arrow_options)
11632{
11633 auto options =
11634 GARROW_STRUCT_FIELD_OPTIONS(g_object_new(GARROW_TYPE_STRUCT_FIELD_OPTIONS, NULL));
11635 auto arrow_new_options = garrow_struct_field_options_get_raw(options);
11636 arrow_new_options->field_ref = arrow_options->field_ref;
11637 return options;
11638}
11639
11640arrow::compute::StructFieldOptions *
11641garrow_struct_field_options_get_raw(GArrowStructFieldOptions *options)

Callers 1

Tested by

no test coverage detected