| 53 | } |
| 54 | |
| 55 | static uint64_t MaxFileSizeForLevel(const Options* options, int level) { |
| 56 | // We could vary per level to reduce number of files? |
| 57 | return TargetFileSize(options); |
| 58 | } |
| 59 | |
| 60 | static int64_t TotalFileSize(const std::vector<FileMetaData*>& files) { |
| 61 | int64_t sum = 0; |
no test coverage detected