| 90 | static constexpr const char* kFactoryName = "pause_then_stop_plan"; |
| 91 | |
| 92 | static Status Register() { |
| 93 | auto exec_reg = default_exec_factory_registry(); |
| 94 | if (!exec_reg->GetFactory(kFactoryName).ok()) { |
| 95 | ARROW_RETURN_NOT_OK( |
| 96 | exec_reg->AddFactory(kFactoryName, PauseThenStopPlanNode::Make)); |
| 97 | } |
| 98 | return Status::OK(); |
| 99 | } |
| 100 | |
| 101 | using PauseThenStopNode::PauseThenStopNode; |
| 102 |
nothing calls this directly
no test coverage detected