| 114 | } |
| 115 | |
| 116 | std::string_view GroupReducerTypeToString(GroupReducerType reducer) { |
| 117 | auto it = kGroupReducerTypeMap.find(reducer); |
| 118 | if (it == kGroupReducerTypeMap.end()) { |
| 119 | UNREACHABLE(); |
| 120 | } |
| 121 | return it->second; |
| 122 | } |
| 123 | |
| 124 | std::string GroupSourceToString(const std::vector<std::string> &sources) { |
| 125 | std::string res; |