| 1597 | } |
| 1598 | |
| 1599 | void NodeDescription::setStepStatistic(PlanNodePtr node) |
| 1600 | { |
| 1601 | if (node->getStatistics().has_value()) |
| 1602 | { |
| 1603 | NodeDescription::StatisticInfo node_stats; |
| 1604 | node_stats.row_count = node->getStatistics().value()->getRowCount(); |
| 1605 | stats = node_stats; |
| 1606 | } |
| 1607 | } |
| 1608 | |
| 1609 | Poco::JSON::Object::Ptr |
| 1610 | NodeDescription::jsonNodeDescription(const StepProfiles & node_profiles, bool print_stats, const PlanCostMap & costs) |
no test coverage detected