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

Function garrow_execute_plan_build_source_node

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

* garrow_execute_plan_build_source_node: * @plan: A #GArrowExecutePlan. * @options: A #GArrowSourceNodeOptions. * @error: (nullable): Return location for a #GError or %NULL. * * This is a shortcut of garrow_execute_plan_build_node() for source * node. * * Returns: (transfer full): A newly built and added #GArrowExecuteNode * for source on success, %NULL on error. * * Since: 6.0.0 */

Source from the content-addressed store, hash-verified

2309 * Since: 6.0.0
2310 */
2311GArrowExecuteNode *
2312garrow_execute_plan_build_source_node(GArrowExecutePlan *plan,
2313 GArrowSourceNodeOptions *options,
2314 GError **error)
2315{
2316 return garrow_execute_plan_build_node(plan,
2317 "source",
2318 NULL,
2319 GARROW_EXECUTE_NODE_OPTIONS(options),
2320 error);
2321}
2322
2323/**
2324 * garrow_execute_plan_build_filter_node:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected