Return fals from unimplemented function, so the benchmark tests can run

This commit is contained in:
gvolfing 2023-01-23 10:43:41 +01:00
parent ea646e1803
commit 69fa4e8c8d

View File

@ -55,9 +55,7 @@ class VertexCountCache {
return 1;
}
bool LabelIndexExists(storage::v3::LabelId label) {
throw utils::NotYetImplemented("Label indicies are yet to be implemented.");
}
bool LabelIndexExists(storage::v3::LabelId /*label*/) { return false; }
bool PrimaryLabelExists(storage::v3::LabelId label) { return request_router_->IsPrimaryLabel(label); }