This helps warn the user that the ondisk format may be subject to change.
Signed-off-by: Sage Weil <sage@inktank.com>
public:
KeyValueStore(const std::string &base,
- const char *internal_name = "keyvaluestore",
+ const char *internal_name = "keyvaluestore-dev",
bool update_to=false);
~KeyValueStore();
if (type == "memstore") {
return new MemStore(cct, data);
}
- if (type == "keyvaluestore") {
+ if (type == "keyvaluestore-dev") {
return new KeyValueStore(data);
}
return NULL;
INSTANTIATE_TEST_CASE_P(
ObjectStore,
StoreTest,
- ::testing::Values("filestore", "keyvaluestore"));
+ ::testing::Values("filestore", "keyvaluestore-dev"));
#else