| 1421 | } |
| 1422 | |
| 1423 | void TagPartitionedLogSystem::popTxs(Version upTo, int8_t popLocality) { |
| 1424 | if (getTLogVersion() < TLogVersion::V4) { |
| 1425 | pop(upTo, txsTag, 0, popLocality); |
| 1426 | } else { |
| 1427 | for (int i = 0; i < txsTags; i++) { |
| 1428 | pop(upTo, Tag(tagLocalityTxs, i), 0, popLocality); |
| 1429 | } |
| 1430 | } |
| 1431 | } |
| 1432 | |
| 1433 | void TagPartitionedLogSystem::pop(Version upTo, Tag tag, Version durableKnownCommittedVersion, int8_t popLocality) { |
| 1434 | if (upTo <= 0) |
no test coverage detected