| 92 | } |
| 93 | |
| 94 | void WriteBatchInternal::SetSequence(WriteBatch* b, SequenceNumber seq) { |
| 95 | EncodeFixed64(&b->rep_[0], seq); |
| 96 | } |
| 97 | |
| 98 | void WriteBatch::Put(const Slice& key, const Slice& value) { |
| 99 | WriteBatchInternal::SetCount(this, WriteBatchInternal::Count(this) + 1); |
nothing calls this directly
no test coverage detected