| 409 | } |
| 410 | |
| 411 | std::vector<SortOrder> deserializeSortingOrders(const folly::dynamic& array) { |
| 412 | std::vector<SortOrder> sortingOrders; |
| 413 | sortingOrders.reserve(array.size()); |
| 414 | for (const auto& order : array) { |
| 415 | sortingOrders.push_back(SortOrder::deserialize(order)); |
| 416 | } |
| 417 | return sortingOrders; |
| 418 | } |
| 419 | } // namespace |
| 420 | |
| 421 | folly::dynamic AggregationNode::Aggregate::serialize() const { |
no test coverage detected