| 1154 | } |
| 1155 | |
| 1156 | int64_t VersionSet::NumLevelBytes(int level) const { |
| 1157 | assert(level >= 0); |
| 1158 | assert(level < config::kNumLevels); |
| 1159 | return TotalFileSize(current_->files_[level]); |
| 1160 | } |
| 1161 | |
| 1162 | int64_t VersionSet::MaxNextLevelOverlappingBytes() { |
| 1163 | int64_t result = 0; |
no test coverage detected