| 88 | } |
| 89 | |
| 90 | SequenceNumber WriteBatchInternal::Sequence(const WriteBatch* b) { |
| 91 | return SequenceNumber(DecodeFixed64(b->rep_.data())); |
| 92 | } |
| 93 | |
| 94 | void WriteBatchInternal::SetSequence(WriteBatch* b, SequenceNumber seq) { |
| 95 | EncodeFixed64(&b->rep_[0], seq); |
nothing calls this directly
no test coverage detected