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

Function ggandiva_expression_to_string

c_glib/gandiva-glib/expression.cpp:204–210  ·  view source on GitHub ↗

* ggandiva_expression_to_string: * @expression: A #GGandivaExpression. * * Returns: (transfer full): The string representation of the node in the expression tree. * * It should be freed with g_free() when no longer needed. * * Since: 0.12.0 */

Source from the content-addressed store, hash-verified

202 * Since: 0.12.0
203 */
204gchar *
205ggandiva_expression_to_string(GGandivaExpression *expression)
206{
207 auto gandiva_expression = ggandiva_expression_get_raw(expression);
208 auto string = gandiva_expression->ToString();
209 return g_strndup(string.data(), string.size());
210}
211
212G_DEFINE_TYPE(GGandivaCondition, ggandiva_condition, GGANDIVA_TYPE_EXPRESSION)
213

Callers

nothing calls this directly

Calls 4

ToStringMethod · 0.45
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected