aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/singlestringpostattribute.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchlib/src/vespa/searchlib/attribute/singlestringpostattribute.hpp')
-rw-r--r--searchlib/src/vespa/searchlib/attribute/singlestringpostattribute.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/searchlib/src/vespa/searchlib/attribute/singlestringpostattribute.hpp b/searchlib/src/vespa/searchlib/attribute/singlestringpostattribute.hpp
index 5e7b70b5080..eef72984e79 100644
--- a/searchlib/src/vespa/searchlib/attribute/singlestringpostattribute.hpp
+++ b/searchlib/src/vespa/searchlib/attribute/singlestringpostattribute.hpp
@@ -127,19 +127,19 @@ SingleValueStringPostingAttributeT<B>::applyValueChanges(EnumStoreBatchUpdater&
template <typename B>
void
-SingleValueStringPostingAttributeT<B>::removeOldGenerations(generation_t firstUsed)
+SingleValueStringPostingAttributeT<B>::reclaim_memory(generation_t oldest_used_gen)
{
- SingleValueStringAttributeT<B>::removeOldGenerations(firstUsed);
- _postingList.reclaim_memory(firstUsed);
+ SingleValueStringAttributeT<B>::reclaim_memory(oldest_used_gen);
+ _postingList.reclaim_memory(oldest_used_gen);
}
template <typename B>
void
-SingleValueStringPostingAttributeT<B>::onGenerationChange(generation_t generation)
+SingleValueStringPostingAttributeT<B>::before_inc_generation(generation_t current_gen)
{
_postingList.freeze();
- SingleValueStringAttributeT<B>::onGenerationChange(generation);
- _postingList.assign_generation(generation - 1);
+ SingleValueStringAttributeT<B>::before_inc_generation(current_gen);
+ _postingList.assign_generation(current_gen);
}
template <typename B>