aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/aggregation/sumaggregationresult.h
blob: 81d1a1df3280e6b97a3a6fe220125969fa8a3ec6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "aggregationresult.h"
#include <vespa/searchlib/expression/numericresultnode.h>

namespace search::aggregation {

class SumAggregationResult : public AggregationResult
{
public:
    using NumericResultNode = expression::NumericResultNode;
    DECLARE_AGGREGATIONRESULT(SumAggregationResult);
    SumAggregationResult();
    SumAggregationResult(NumericResultNode::UP sum);
    ~SumAggregationResult() override;
    void visitMembers(vespalib::ObjectVisitor &visitor) const override;
    const NumericResultNode & getSum() const { return *_sum; }
private:
    const ResultNode & onGetRank() const override { return getSum(); }
    void onPrepare(const ResultNode & result, bool useForInit) override;
    NumericResultNode::CP _sum;
};

}