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

Function gaflight_command_descriptor_get_command

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

* gaflight_command_descriptor_get_command: * @descriptor: A #GAFlightCommandDescriptor. * * Returns: The opaque value used to express a command. * * It should be freed with g_free() when no longer needed. * * Since: 5.0.0 */

Source from the content-addressed store, hash-verified

526 * Since: 5.0.0
527 */
528gchar *
529gaflight_command_descriptor_get_command(GAFlightCommandDescriptor *descriptor)
530{
531 const auto flight_descriptor =
532 gaflight_descriptor_get_raw(GAFLIGHT_DESCRIPTOR(descriptor));
533 const auto &flight_command = flight_descriptor->cmd;
534 return g_strdup(flight_command.c_str());
535}
536
537typedef struct GAFlightTicketPrivate_
538{

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected