[[acero::export]]
| 484 | |
| 485 | // [[acero::export]] |
| 486 | std::shared_ptr<acero::ExecNode> ExecNode_TableSourceNode( |
| 487 | const std::shared_ptr<acero::ExecPlan>& plan, |
| 488 | const std::shared_ptr<arrow::Table>& table) { |
| 489 | arrow::acero::TableSourceNodeOptions options{/*table=*/table, |
| 490 | // TODO: make batch_size configurable |
| 491 | /*batch_size=*/1048576}; |
| 492 | |
| 493 | return MakeExecNodeOrStop("table_source", plan.get(), {}, options); |
| 494 | } |
| 495 | |
| 496 | #endif |
| 497 |
no test coverage detected