aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/truesearch.cpp
blob: 433e027d2be4cc3e73adba416474c597ee148342 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "truesearch.h"

namespace search::queryeval {

void
TrueSearch::doSeek(uint32_t docid)
{
    setDocId(docid);
}

void
TrueSearch::doUnpack(uint32_t docid)
{
    _tfmd.resetOnlyDocId(docid);
}

TrueSearch::TrueSearch(fef::TermFieldMatchData & tfmd) :
    SearchIterator(),
    _tfmd(tfmd)
{
    _tfmd.resetOnlyDocId(0);
}

TrueSearch::~TrueSearch() = default;

}