summaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/test/eagerchild.h
blob: db3206ab8a637693b06b5174d573528fa92c482e (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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <vespa/searchlib/queryeval/searchiterator.h>

namespace search {
namespace queryeval {
namespace test {

/**
 * Child iterator that has initial docid > 0.
 **/
struct EagerChild : public SearchIterator
{
    EagerChild(uint32_t initial) : SearchIterator() { setDocId(initial); }
    void doSeek(uint32_t) override { setAtEnd(); }
    void doUnpack(uint32_t) override {}
};

} // namespace test
} // namespace queryeval
} // namespace search