| 74 | } |
| 75 | |
| 76 | std::string_view IQueryPlanStep::getStepDescription() const |
| 77 | { |
| 78 | if (std::holds_alternative<std::string_view>(step_description)) |
| 79 | return std::get<std::string_view>(step_description); |
| 80 | if (std::holds_alternative<std::string>(step_description)) |
| 81 | return std::get<std::string>(step_description); |
| 82 | |
| 83 | return {}; |
| 84 | } |
| 85 | |
| 86 | void IQueryPlanStep::setStepDescription(std::string description, size_t limit) |
| 87 | { |
no outgoing calls
no test coverage detected