* garrow_execute_node_get_kind_name: * @node: A #GArrowExecuteNode. * * Returns: The kind name of the node. * * Since: 6.0.0 */
| 2124 | * Since: 6.0.0 |
| 2125 | */ |
| 2126 | const gchar * |
| 2127 | garrow_execute_node_get_kind_name(GArrowExecuteNode *node) |
| 2128 | { |
| 2129 | auto arrow_node = garrow_execute_node_get_raw(node); |
| 2130 | return arrow_node->kind_name(); |
| 2131 | } |
| 2132 | |
| 2133 | /** |
| 2134 | * garrow_execute_node_get_output_schema: |
nothing calls this directly
no test coverage detected