summaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-05-18 10:30:09 +0200
committerGitHub <noreply@github.com>2022-05-18 10:30:09 +0200
commitb116016d101c88f0649c026af382a1f735e80f50 (patch)
tree758aa295b1d0ed02bc607e4128645bf26b188fc3 /searchcore/src/tests/proton/documentdb
parentb1fc05ceed740376cbe9ccd57add7cb08c6ec912 (diff)
parentd0d1bd1090e5dcd778eb86ee1c1b1714fd633cae (diff)
Merge pull request #22633 from vespa-engine/balder/move-persistence-spi-types-under-vespa
Balder/move persistence spi types under vespa
Diffstat (limited to 'searchcore/src/tests/proton/documentdb')
-rw-r--r--searchcore/src/tests/proton/documentdb/lid_space_compaction/lid_space_common.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/tests/proton/documentdb/lid_space_compaction/lid_space_common.cpp b/searchcore/src/tests/proton/documentdb/lid_space_compaction/lid_space_common.cpp
index 57989688a4f..9c68d7d5974 100644
--- a/searchcore/src/tests/proton/documentdb/lid_space_compaction/lid_space_common.cpp
+++ b/searchcore/src/tests/proton/documentdb/lid_space_compaction/lid_space_common.cpp
@@ -106,7 +106,7 @@ MyHandler::createMoveOperation(const search::DocumentMetaData &document, uint32_
assert(document.lid > moveToLid);
_moveFromLid = document.lid;
const auto & entry = _docs[document.lid];
- auto op = std::make_unique<MoveOperation>(entry.first.bucketId, entry.first.timestamp, entry.second,
+ auto op = std::make_unique<MoveOperation>(entry.first.bucketId, storage::spi::Timestamp(entry.first.timestamp), entry.second,
DbDocumentId(document.lid), 0);
op->setTargetLid(moveToLid);
return op;