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