| 44 | } |
| 45 | |
| 46 | int EventUUIDHandler::LoadFromCheckPoint(const EventData &checkpointdata) { |
| 47 | int ret = EventUUIDHandler::ParseFromString(checkpointdata.data()); |
| 48 | if (ret) { |
| 49 | return ret; |
| 50 | } |
| 51 | ColorLogInfo("%s init done ret %d newest gtid %s last instance id %llu", __func__, ret, newest_info_.gtid().c_str(), |
| 52 | newest_info_.instance_id()); |
| 53 | return ret; |
| 54 | } |
| 55 | |
| 56 | EventUUIDHandler::~EventUUIDHandler() { |
| 57 | } |
nothing calls this directly
no test coverage detected