aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/instruction/join_with_number_function.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'eval/src/vespa/eval/instruction/join_with_number_function.cpp')
-rw-r--r--eval/src/vespa/eval/instruction/join_with_number_function.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/eval/src/vespa/eval/instruction/join_with_number_function.cpp b/eval/src/vespa/eval/instruction/join_with_number_function.cpp
index d24a69e33a7..c41867242f0 100644
--- a/eval/src/vespa/eval/instruction/join_with_number_function.cpp
+++ b/eval/src/vespa/eval/instruction/join_with_number_function.cpp
@@ -89,9 +89,9 @@ JoinWithNumberFunction::primary_is_mutable() const {
using MyTypify = TypifyValue<TypifyCellMeta,vespalib::TypifyBool,operation::TypifyOp2>;
InterpretedFunction::Instruction
-JoinWithNumberFunction::compile_self(const ValueBuilderFactory &, Stash &stash) const
+JoinWithNumberFunction::compile_self(const CTFContext &ctx) const
{
- const auto &param = stash.create<JoinWithNumberParam>(result_type(), _function);
+ const auto &param = ctx.stash.create<JoinWithNumberParam>(result_type(), _function);
auto input_type = (_primary == Primary::LHS) ? lhs().result_type() : rhs().result_type();
assert(result_type() == ValueType::join(input_type, ValueType::double_type()));
auto op = typify_invoke<4,MyTypify,SelectJoinWithNumberOp>(input_type.cell_meta(),