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

Function gaflight_descriptor_to_string

c_glib/arrow-flight-glib/common.cpp:399–405  ·  view source on GitHub ↗

* gaflight_descriptor_to_string: * @descriptor: A #GAFlightDescriptor. * * Returns: A descriptor as a string. * * It should be freed with g_free() when no longer needed. * * Since: 5.0.0 */

Source from the content-addressed store, hash-verified

397 * Since: 5.0.0
398 */
399gchar *
400gaflight_descriptor_to_string(GAFlightDescriptor *descriptor)
401{
402 const auto flight_descriptor = gaflight_descriptor_get_raw(descriptor);
403 const auto string = flight_descriptor->ToString();
404 return g_strdup(string.c_str());
405}
406
407/**
408 * gaflight_descriptor_equal:

Callers

nothing calls this directly

Calls 2

ToStringMethod · 0.45

Tested by

no test coverage detected