aboutsummaryrefslogtreecommitdiffstats
path: root/searchlib/src/vespa/searchlib/queryeval/test/eagerchild.h
blob: da9715011a62a99a61393da2a2591ca4e49bf8a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright Vespa.ai. 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::queryeval::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 {}
};

}