summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2017-04-27 09:38:05 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2017-04-27 09:38:05 +0000
commita3aef2d5cffd073f3d595cbb449382eb5d12086c (patch)
tree9aa53e7a3b6f033916149fac0e0b72116b34aec6 /searchcore
parentbdca4a50921ff927f0f399e146a972165e20c173 (diff)
Rename wipeHistory() to pruneRemovedFields() in handling of indexed fields.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h b/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h
index 9f5c2290d2f..6c57298dc43 100644
--- a/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h
+++ b/searchcore/src/vespa/searchcore/proton/index/memoryindexwrapper.h
@@ -84,8 +84,8 @@ public:
_index.commit(onWriteDone);
_serialNum.store(serialNum, std::memory_order_relaxed);
}
- void wipeHistory(const search::index::Schema &schema) override {
- _index.wipeHistory(schema);
+ void pruneRemovedFields(const search::index::Schema &schema) override {
+ _index.pruneRemovedFields(schema);
}
void flushToDisk(const vespalib::string &flushDir, uint32_t docIdLimit, SerialNum serialNum) override;
};