| 49 | pool_)) {} |
| 50 | |
| 51 | std::unordered_map<std::string, std::string> |
| 52 | TaskTraceMetadataReader::queryConfigs() const { |
| 53 | std::unordered_map<std::string, std::string> queryConfigs; |
| 54 | const auto& queryConfigObj = metadataObj_[TraceTraits::kQueryConfigKey]; |
| 55 | for (const auto& [key, value] : queryConfigObj.items()) { |
| 56 | queryConfigs[key.asString()] = value.asString(); |
| 57 | } |
| 58 | return queryConfigs; |
| 59 | } |
| 60 | |
| 61 | std::unordered_map<std::string, std::unordered_map<std::string, std::string>> |
| 62 | TaskTraceMetadataReader::connectorProperties() const { |
no outgoing calls