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

Function garrow_source_node_options_new_table

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

* garrow_source_node_options_new_table: * @table: A #GArrowTable. * * Returns: A newly created #GArrowSourceNodeOptions. * * Since: 6.0.0 */

Source from the content-addressed store, hash-verified

1265 * Since: 6.0.0
1266 */
1267GArrowSourceNodeOptions *
1268garrow_source_node_options_new_table(GArrowTable *table)
1269{
1270 auto reader = garrow_table_batch_reader_new(table);
1271 auto options = garrow_source_node_options_new_record_batch_reader(
1272 GARROW_RECORD_BATCH_READER(reader));
1273 g_object_unref(reader);
1274 return options;
1275}
1276
1277enum {
1278 PROP_EXPRESSION = 1,

Callers

nothing calls this directly

Tested by

no test coverage detected