| 404 | } |
| 405 | |
| 406 | int NumTableFilesAtLevel(int level) { |
| 407 | std::string property; |
| 408 | ASSERT_TRUE(db_->GetProperty( |
| 409 | "leveldb.num-files-at-level" + NumberToString(level), &property)); |
| 410 | return std::stoi(property); |
| 411 | } |
| 412 | |
| 413 | int TotalTableFiles() { |
| 414 | int result = 0; |
nothing calls this directly
no test coverage detected