aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/attribute/numericbase.cpp
blob: 7da05bb3faf2ab71ce08a7f534602bbf32b9aa62 (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
26
27
28
29
30
31
32
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.


#include "numericbase.h"

#include <vespa/log/log.h>
LOG_SETUP(".searchlib.attribute.numericbase");

namespace search {

void
NumericAttribute::load_enumerated_data(ReaderBase&,
                                       enumstore::EnumeratedPostingsLoader&,
                                       size_t)
{
    LOG_ABORT("Should not be reached");
}

void
NumericAttribute::load_enumerated_data(ReaderBase&,
                                       enumstore::EnumeratedLoader&)
{
    LOG_ABORT("Should not be reached");
}

void
NumericAttribute::load_posting_lists_and_update_enum_store(enumstore::EnumeratedPostingsLoader&)
{
    LOG_ABORT("Should not be reached");
}

}