| 426 | } |
| 427 | |
| 428 | ExecNode* ExecPlan::AddNode(std::unique_ptr<ExecNode> node) { |
| 429 | return ToDerived(this)->AddNode(std::move(node)); |
| 430 | } |
| 431 | |
| 432 | QueryContext* ExecPlan::query_context() { return &ToDerived(this)->query_context_; } |
| 433 |
nothing calls this directly
no test coverage detected