aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/tests/features/ranking_expression/ranking_expression_test.cpp
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@oath.com>2017-08-24 11:35:43 +0000
committerHåvard Pettersen <havardpe@oath.com>2017-08-24 11:35:43 +0000
commit6eb9afb788d7cc45ca68fc07855ac20f33bfc06d (patch)
treeba8ca9df286337a6db8db7fff99a6f7d36dab10a /searchlib/src/tests/features/ranking_expression/ranking_expression_test.cpp
parent94b86e00a183b4a87b708d2d075d27311a112d15 (diff)
wire in max reduce prod join replacer
also added logging when something is replaced
Diffstat (limited to 'searchlib/src/tests/features/ranking_expression/ranking_expression_test.cpp')
-rw-r--r--searchlib/src/tests/features/ranking_expression/ranking_expression_test.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/searchlib/src/tests/features/ranking_expression/ranking_expression_test.cpp b/searchlib/src/tests/features/ranking_expression/ranking_expression_test.cpp
index 21913dbf6bc..2419f450950 100644
--- a/searchlib/src/tests/features/ranking_expression/ranking_expression_test.cpp
+++ b/searchlib/src/tests/features/ranking_expression/ranking_expression_test.cpp
@@ -24,6 +24,7 @@ struct DummyExecutor : FeatureExecutor {
struct DummyExpression : IntrinsicExpression {
FeatureType type;
DummyExpression(const FeatureType &type_in) : type(type_in) {}
+ vespalib::string describe_self() const override { return "dummy"; }
const FeatureType &result_type() const override { return type; }
FeatureExecutor &create_executor(const QueryEnv &, vespalib::Stash &stash) const override {
return stash.create<DummyExecutor>();