| 520 | } |
| 521 | |
| 522 | std::string debugExplainPlan(const QueryPlan & plan) |
| 523 | { |
| 524 | WriteBufferFromOwnString out; |
| 525 | ExplainPlanOptions options{.header = true, .actions = true}; |
| 526 | plan.explainPlan(out, options); |
| 527 | return out.str(); |
| 528 | } |
| 529 | |
| 530 | namespace ExplainPlan |
| 531 | { |
nothing calls this directly
no test coverage detected