aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/docstore/data_store_file_chunk_id.cpp
blob: 74ad7d1091255710151ec46a062c69cc654b0eca (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 "data_store_file_chunk_id.h"
#include "filechunk.h"

namespace search {

vespalib::string
DataStoreFileChunkId::createName(const vespalib::string &baseName) const
{
    FileChunk::NameId id(_nameId);
    return id.createName(baseName);
}

} // namespace search