* 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 */
| 202 | * Since: 0.12.0 |
| 203 | */ |
| 204 | gchar * |
| 205 | ggandiva_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 | |
| 212 | G_DEFINE_TYPE(GGandivaCondition, ggandiva_condition, GGANDIVA_TYPE_EXPRESSION) |
| 213 |
nothing calls this directly
no test coverage detected