Return the value to associate with the specified key
| 447 | |
| 448 | // Return the value to associate with the specified key |
| 449 | Slice Value(int k, std::string* storage) const { |
| 450 | Random r(k); |
| 451 | return test::RandomString(&r, kValueSize, storage); |
| 452 | } |
| 453 | |
| 454 | Status OpenDB() { |
| 455 | delete db_; |
nothing calls this directly
no test coverage detected