| 23 | namespace leveldb { |
| 24 | |
| 25 | static size_t TargetFileSize(const Options* options) { |
| 26 | return options->max_file_size; |
| 27 | } |
| 28 | |
| 29 | // Maximum bytes of overlaps in grandparent (i.e., level+2) before we |
| 30 | // stop building a single file in a level->level+1 compaction. |
no outgoing calls
no test coverage detected