summaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/tests/attribute/enumstore/enumstore_test.cpp')
-rw-r--r--searchlib/src/tests/attribute/enumstore/enumstore_test.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp b/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp
index 40ff25ff976..06ee0060c7a 100644
--- a/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp
+++ b/searchlib/src/tests/attribute/enumstore/enumstore_test.cpp
@@ -7,6 +7,7 @@
LOG_SETUP("enumstore_test");
using Type = search::DictionaryConfig::Type;
+using vespalib::datastore::CompactionStrategy;
using vespalib::datastore::EntryRef;
using vespalib::datastore::EntryRefFilter;
using RefT = vespalib::datastore::EntryRefT<22>;
@@ -878,7 +879,7 @@ void inc_generation(generation_t &gen, NumericEnumStore &store)
TYPED_TEST(EnumStoreDictionaryTest, compact_worst_works)
{
- size_t entry_count = (search::CompactionStrategy::DEAD_BYTES_SLACK / 8) + 40;
+ size_t entry_count = (CompactionStrategy::DEAD_BYTES_SLACK / 8) + 40;
auto updater = this->store.make_batch_updater();
for (int32_t i = 0; (size_t) i < entry_count; ++i) {
auto idx = updater.insert(i);
@@ -891,13 +892,13 @@ TYPED_TEST(EnumStoreDictionaryTest, compact_worst_works)
inc_generation(gen, this->store);
auto& dict = this->store.get_dictionary();
if (dict.get_has_btree_dictionary()) {
- EXPECT_LT(search::CompactionStrategy::DEAD_BYTES_SLACK, dict.get_btree_memory_usage().deadBytes());
+ EXPECT_LT(CompactionStrategy::DEAD_BYTES_SLACK, dict.get_btree_memory_usage().deadBytes());
}
if (dict.get_has_hash_dictionary()) {
- EXPECT_LT(search::CompactionStrategy::DEAD_BYTES_SLACK, dict.get_hash_memory_usage().deadBytes());
+ EXPECT_LT(CompactionStrategy::DEAD_BYTES_SLACK, dict.get_hash_memory_usage().deadBytes());
}
int compact_count = 0;
- search::CompactionStrategy compaction_strategy;
+ CompactionStrategy compaction_strategy;
for (uint32_t i = 0; i < 15; ++i) {
this->store.update_stat();
if (this->store.consider_compact_dictionary(compaction_strategy)) {
@@ -911,10 +912,10 @@ TYPED_TEST(EnumStoreDictionaryTest, compact_worst_works)
EXPECT_LT((TypeParam::type == Type::BTREE_AND_HASH) ? 1 : 0, compact_count);
EXPECT_GT(15, compact_count);
if (dict.get_has_btree_dictionary()) {
- EXPECT_GT(search::CompactionStrategy::DEAD_BYTES_SLACK, dict.get_btree_memory_usage().deadBytes());
+ EXPECT_GT(CompactionStrategy::DEAD_BYTES_SLACK, dict.get_btree_memory_usage().deadBytes());
}
if (dict.get_has_hash_dictionary()) {
- EXPECT_GT(search::CompactionStrategy::DEAD_BYTES_SLACK, dict.get_hash_memory_usage().deadBytes());
+ EXPECT_GT(CompactionStrategy::DEAD_BYTES_SLACK, dict.get_hash_memory_usage().deadBytes());
}
std::vector<int32_t> exp_values;
std::vector<int32_t> values;