| 36 | } |
| 37 | |
| 38 | void PhxSQLClientConfig::SetMySQLEndPoints(const std::vector<MySQLEndPoint_t> & vecEndPoints) { |
| 39 | m_vecMySQLEndPoint.clear(); |
| 40 | for (auto & itr : vecEndPoints) { |
| 41 | m_vecMySQLEndPoint.push_back(itr); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | void PhxSQLClientConfig::ResetEndPoints() { |
| 46 | m_vecMySQLEndPoint.clear(); |
nothing calls this directly
no outgoing calls
no test coverage detected