aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/expression/integerresultnode.cpp
blob: b3ad3daf16a2a56311a7703dacf792d94af0873a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include "integerresultnode.h"
#include "integerbucketresultnode.h"

namespace search {
namespace expression {

const BucketResultNode& IntegerResultNode::getNullBucket() const {
    return IntegerBucketResultNode::getNull();
}

}
}