summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2024-02-05 12:03:21 +0100
committerGitHub <noreply@github.com>2024-02-05 12:03:21 +0100
commit4f522741cb43c90209f8faa4daff66613def07af (patch)
treeacaaf8ada5134554c31292c8834e8c7a7a2e100c
parent7f6516e9da613cd7809cdd202e809354563efa0e (diff)
parent0213d010504745e24e5478a5bf5a9ac4d2cdd11b (diff)
Merge pull request #30172 from vespa-engine/arnej/wire-fef-test-plugin
wire fef test plugin
-rw-r--r--streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp b/streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp
index eebd9a79c07..7b248faaa51 100644
--- a/streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp
+++ b/streamingvisitors/src/vespa/searchvisitor/rankmanager.cpp
@@ -4,6 +4,7 @@
#include <vespa/searchlib/features/setup.h>
#include <vespa/searchlib/fef/fieldinfo.h>
#include <vespa/searchlib/fef/functiontablefactory.h>
+#include <vespa/searchlib/fef/test/plugin/setup.h>
#include <vespa/vespalib/util/stringfmt.h>
#include <vespa/vespalib/util/exception.h>
#include <vespa/vsm/common/document.h>
@@ -224,6 +225,7 @@ RankManager::RankManager(VSMAdapter * const vsmAdapter) :
{
// init blueprint factory
search::features::setup_search_features(_blueprintFactory);
+ search::fef::test::setup_fef_test_plugin(_blueprintFactory);
}
RankManager::~RankManager() = default;