| 657 | virtual bool IsHashTable() { return impl_->IsHashTable(); } |
| 658 | |
| 659 | virtual std::function<std::string(const std::string&)> GetHashMethod() { |
| 660 | return impl_->GetHashMethod(); |
| 661 | } |
| 662 | |
| 663 | virtual bool GetTablet(const std::string& row_key, std::string* tablet) override { |
| 664 | return impl_->GetTablet(row_key, tablet); |
nothing calls this directly
no test coverage detected