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

Function garrow_execute_node_get_output_schema

c_glib/arrow-glib/compute.cpp:2141–2147  ·  view source on GitHub ↗

* garrow_execute_node_get_output_schema: * @node: A #GArrowExecuteNode. * * Returns: (transfer full): The output schema of the node. * * Since: 6.0.0 */

Source from the content-addressed store, hash-verified

2139 * Since: 6.0.0
2140 */
2141GArrowSchema *
2142garrow_execute_node_get_output_schema(GArrowExecuteNode *node)
2143{
2144 auto arrow_node = garrow_execute_node_get_raw(node);
2145 std::shared_ptr<arrow::Schema> arrow_schema = arrow_node->output_schema();
2146 return garrow_schema_new_raw(&arrow_schema);
2147}
2148
2149struct GArrowExecutePlanPrivate
2150{

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected