| 1314 | namespace { |
| 1315 | |
| 1316 | std::vector<std::string> stringify(const std::vector<int32_t>& values) { |
| 1317 | std::vector<std::string> converted(values.size()); |
| 1318 | std::transform( |
| 1319 | values.begin(), values.end(), converted.begin(), [](int32_t value) { |
| 1320 | return folly::to<std::string>(value); |
| 1321 | }); |
| 1322 | return converted; |
| 1323 | } |
| 1324 | |
| 1325 | std::unordered_map<uint32_t, std::vector<std::string>> makeStructEncodingOption( |
| 1326 | const ColumnSelector& cs, |
no test coverage detected