| 511 | } |
| 512 | |
| 513 | std::string debugExplainStep(IQueryPlanStep & step) |
| 514 | { |
| 515 | WriteBufferFromOwnString out; |
| 516 | ExplainPlanOptions options{.actions = true}; |
| 517 | IQueryPlanStep::FormatSettings settings{.out = out, .header_prefix = "", .detail_prefix = "", .pretty_names = {}, .runtime_filter_names = {}}; |
| 518 | explainStep(step, settings, options, 0); |
| 519 | return out.str(); |
| 520 | } |
| 521 | |
| 522 | std::string debugExplainPlan(const QueryPlan & plan) |
| 523 | { |
nothing calls this directly
no test coverage detected