[[acero::export]]
| 452 | |
| 453 | // [[acero::export]] |
| 454 | std::shared_ptr<acero::ExecNode> ExecNode_Union( |
| 455 | const std::shared_ptr<acero::ExecNode>& input, |
| 456 | const std::shared_ptr<acero::ExecNode>& right_data) { |
| 457 | return MakeExecNodeOrStop("union", input->plan(), {input.get(), right_data.get()}, {}); |
| 458 | } |
| 459 | |
| 460 | // [[acero::export]] |
| 461 | std::shared_ptr<acero::ExecNode> ExecNode_Fetch( |
no test coverage detected