aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/expression/stringresultnode.cpp
blob: d3381295dd7633125cd63574fa7db2953cfd7876 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "stringresultnode.h"
#include "stringbucketresultnode.h"

namespace search {
namespace expression {

const BucketResultNode& StringResultNode::getNullBucket() const {
    return StringBucketResultNode::getNull();
}

}
}