| 35 | } |
| 36 | |
| 37 | uint64_t Size(const Slice& start, const Slice& limit) { |
| 38 | Range r(start, limit); |
| 39 | uint64_t size; |
| 40 | db_->GetApproximateSizes(&r, 1, &size); |
| 41 | return size; |
| 42 | } |
| 43 | |
| 44 | void DoReads(int n); |
| 45 |
nothing calls this directly
no test coverage detected