Forgot to change interface everywhere

Summary: Changed the name and interface for creating HashSkipListRep. Forgot to change it in db_test.

Test Plan: make db_test

Reviewers: haobo

Reviewed By: haobo

Differential Revision: https://reviews.facebook.net/D13965
main
Igor Canadi 11 years ago
parent 8b3379dc0a
commit dd218bbc88
  1. 4
      db/db_test.cc

@ -4714,8 +4714,8 @@ TEST(DBTest, PrefixScan) {
options.create_if_missing = true;
options.disable_seek_compaction = true;
if (it == 0) {
options.memtable_factory = std::make_shared<PrefixHashRepNoLockFactory>(
prefix_extractor);
options.memtable_factory.reset(NewHashSkipListRepFactory(
prefix_extractor));
} else {
options.memtable_factory = std::make_shared<PrefixHashRepFactory>(
prefix_extractor);

Loading…
Cancel
Save