[[acero::export]]
| 459 | |
| 460 | // [[acero::export]] |
| 461 | std::shared_ptr<acero::ExecNode> ExecNode_Fetch( |
| 462 | const std::shared_ptr<acero::ExecNode>& input, int64_t offset, int64_t limit) { |
| 463 | return MakeExecNodeOrStop("fetch", input->plan(), {input.get()}, |
| 464 | acero::FetchNodeOptions{offset, limit}); |
| 465 | } |
| 466 | |
| 467 | // [[acero::export]] |
| 468 | std::shared_ptr<acero::ExecNode> ExecNode_OrderBy( |
no test coverage detected