aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/test/attribute_vectors.cpp
blob: 1e1eb424e5ba28b08bf4268d4efff753d3013db7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "attribute_vectors.h"
#include "attribute_utils.h"

namespace proton::test {

std::unique_ptr<Int32Attribute>
createInt32Attribute(const vespalib::string &name) {
    return std::make_unique<Int32Attribute>(name, AttributeUtils::getInt32Config());
}

}