aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/datastore/i_unique_store_dictionary.h
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-10-11 16:52:30 +0200
committerGitHub <noreply@github.com>2022-10-11 16:52:30 +0200
commit274bcee5a55fb61a7c819e6be6acca554fe7a3ae (patch)
treed01ef596666f441c4f9871532aa462e3e4117bd0 /vespalib/src/vespa/vespalib/datastore/i_unique_store_dictionary.h
parent12a1252225e3dd606066250699789b0c342980a3 (diff)
parent79e553fb451b09437dad80070597fa317515ae3a (diff)
Merge pull request #24393 from vespa-engine/toregge/rename-icompactable-move-to-move-on-compactv8.67.17
Rename ICompactable::move to move_on_compact.
Diffstat (limited to 'vespalib/src/vespa/vespalib/datastore/i_unique_store_dictionary.h')
-rw-r--r--vespalib/src/vespa/vespalib/datastore/i_unique_store_dictionary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/vespa/vespalib/datastore/i_unique_store_dictionary.h b/vespalib/src/vespa/vespalib/datastore/i_unique_store_dictionary.h
index bb105d41519..48abda45974 100644
--- a/vespalib/src/vespa/vespalib/datastore/i_unique_store_dictionary.h
+++ b/vespalib/src/vespa/vespalib/datastore/i_unique_store_dictionary.h
@@ -30,7 +30,7 @@ public:
virtual UniqueStoreAddResult add(const EntryComparator& comp, std::function<EntryRef(void)> insertEntry) = 0;
virtual EntryRef find(const EntryComparator& comp) = 0;
virtual void remove(const EntryComparator& comp, EntryRef ref) = 0;
- virtual void move_keys(ICompactable& compactable, const EntryRefFilter& compacting_buffers) = 0;
+ virtual void move_keys_on_compact(ICompactable& compactable, const EntryRefFilter& compacting_buffers) = 0;
virtual uint32_t get_num_uniques() const = 0;
virtual vespalib::MemoryUsage get_memory_usage() const = 0;
virtual void build(vespalib::ConstArrayRef<EntryRef>, vespalib::ConstArrayRef<uint32_t> ref_counts, std::function<void(EntryRef)> hold) = 0;