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

Function ggandiva_node_to_string

c_glib/gandiva-glib/node.cpp:232–238  ·  view source on GitHub ↗

* ggandiva_node_to_string: * @node: A #GGandivaNode. * * Returns: (transfer full): The string representation of the node. * * It should be freed with g_free() when no longer needed. * * Since: 1.0.0 */

Source from the content-addressed store, hash-verified

230 * Since: 1.0.0
231 */
232gchar *
233ggandiva_node_to_string(GGandivaNode *node)
234{
235 auto gandiva_node = ggandiva_node_get_raw(node);
236 auto string = gandiva_node->ToString();
237 return g_strndup(string.data(), string.size());
238}
239
240typedef struct GGandivaFieldNodePrivate_
241{

Callers

nothing calls this directly

Calls 3

ToStringMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected