| 61 | } |
| 62 | |
| 63 | static std::string timeStampToString(Optional<int64_t> epochs) { |
| 64 | if (!epochs.present()) |
| 65 | return "N/A"; |
| 66 | return BackupAgentBase::formatTime(epochs.get()); |
| 67 | } |
| 68 | |
| 69 | static Future<Optional<int64_t>> getTimestampFromVersion(Optional<Version> ver, |
| 70 | Reference<ReadYourWritesTransaction> tr) { |
no test coverage detected