aboutsummaryrefslogtreecommitdiffstats
path: root/searchsummary
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@verizonmedia.com>2020-01-30 10:31:10 +0100
committerGitHub <noreply@github.com>2020-01-30 10:31:10 +0100
commitf9d2e5638c987c678d4d6c57c872ff5e56877e20 (patch)
tree70cb5b566b894e00c5a370c57ea5874de8ecc7c2 /searchsummary
parent2533470181c45a877fdc884f1c6742e0934aa6bb (diff)
parentbb74faa5f2e56c930db1ec06ebf912e5b316c087 (diff)
Merge pull request #11998 from vespa-engine/vekterli/add-readable-attribute-vector-accessor-to-iattribute-manager
Add ReadableAttributeVector accessor to IAttributeManager
Diffstat (limited to 'searchsummary')
-rw-r--r--searchsummary/src/tests/docsummary/positionsdfw_test.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/searchsummary/src/tests/docsummary/positionsdfw_test.cpp b/searchsummary/src/tests/docsummary/positionsdfw_test.cpp
index b161958fc43..4cad98a8e01 100644
--- a/searchsummary/src/tests/docsummary/positionsdfw_test.cpp
+++ b/searchsummary/src/tests/docsummary/positionsdfw_test.cpp
@@ -100,6 +100,10 @@ public:
IAttributeContext::UP createContext() const override {
return IAttributeContext::UP(new MyAttributeContext(_attr));
}
+
+ std::shared_ptr<attribute::ReadableAttributeVector> readable_attribute_vector(const string&) const override {
+ LOG_ABORT("should not be reached");
+ }
};
struct MyGetDocsumsStateCallback : GetDocsumsStateCallback {