| 1746 | } |
| 1747 | |
| 1748 | String PlanSegmentDescription::jsonPlanSegmentDescriptionAsString(const StepProfiles & profiles) |
| 1749 | { |
| 1750 | auto json = jsonPlanSegmentDescription(profiles); |
| 1751 | std::ostringstream os; |
| 1752 | json->stringify(os, 1); |
| 1753 | return os.str(); |
| 1754 | } |
| 1755 | |
| 1756 | Poco::JSON::Object::Ptr PlanSegmentDescription::jsonPlanSegmentDescription(const StepProfiles & profiles, bool is_pipeline) |
| 1757 | { |
no test coverage detected