| 87 | stop_token_(MainRThread::GetInstance().GetStopToken()) {} |
| 88 | |
| 89 | std::string PlanStatus() const { |
| 90 | switch (plan_status_) { |
| 91 | case PLAN_NOT_STARTED: |
| 92 | return "PLAN_NOT_STARTED"; |
| 93 | case PLAN_RUNNING: |
| 94 | return "PLAN_RUNNING"; |
| 95 | case PLAN_FINISHED: |
| 96 | return "PLAN_FINISHED"; |
| 97 | default: |
| 98 | return "UNKNOWN"; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | std::shared_ptr<arrow::Schema> schema() const override { return schema_; } |
| 103 |
no outgoing calls
no test coverage detected