| 70 | static constexpr const char* kFactoryName = "pause_then_stop_input"; |
| 71 | |
| 72 | static Status Register() { |
| 73 | auto exec_reg = default_exec_factory_registry(); |
| 74 | if (!exec_reg->GetFactory(kFactoryName).ok()) { |
| 75 | ARROW_RETURN_NOT_OK( |
| 76 | exec_reg->AddFactory(kFactoryName, PauseThenStopInputNode::Make)); |
| 77 | } |
| 78 | return Status::OK(); |
| 79 | } |
| 80 | |
| 81 | using PauseThenStopNode::PauseThenStopNode; |
| 82 |
nothing calls this directly
no test coverage detected