aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/tests/proton/documentdb
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-05-18 05:22:42 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2022-05-18 05:22:42 +0000
commitfc9c0dcbbff209d47ea1b04f86f36f2ccb0c0ad2 (patch)
tree0b46b84eb4294d20b66bb99e6b6e2b9d9a2d8962 /searchcore/src/tests/proton/documentdb
parentf05f60b1ec40be6f3e60349d65da60bc41555db3 (diff)
- Move persitence/spi/types.h under to persitence/spi/types.h
- Cut dependency to persistencetypes for searchlib.
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;