| 22 | static std::unordered_map<Connection*, std::unordered_map<std::string, std::string>> arrowTableIDs; |
| 23 | |
| 24 | static void rememberArrowTableID(Connection* connection, const char* tableName, |
| 25 | std::string arrowId) { |
| 26 | std::lock_guard<std::mutex> lock(arrowTableIDMutex); |
| 27 | arrowTableIDs[connection][tableName] = std::move(arrowId); |
| 28 | } |
| 29 | |
| 30 | static std::string getRememberedArrowTableID(Connection* connection, const char* tableName) { |
| 31 | std::lock_guard<std::mutex> lock(arrowTableIDMutex); |
no outgoing calls
no test coverage detected