aboutsummaryrefslogtreecommitdiffstats
path: root/persistence/src/vespa/persistence/spi/selection.cpp
blob: a6ee47865451a4a7095b55c2d7580a1725a0fecd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "selection.h"

namespace storage::spi {

Selection::Selection(const DocumentSelection& docSel)
    : _documentSelection(docSel),
      _fromTimestamp(0),
      _toTimestamp(INT64_MAX),
      _timestampSubset()
{ }

Selection::~Selection() = default;

}