summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests
diff options
context:
space:
mode:
authorPavi Vetriselvan <pvselvan@umich.edu>2019-02-22 14:10:53 -0500
committerPavi Vetriselvan <pvselvan@umich.edu>2019-02-22 14:11:41 -0500
commit0ab7df179a7329fea4c28049d1ff532010720280 (patch)
tree84d4057fc06ee832e41ee17522359f7defa2d362 /src/mongo/dbtests
parentf78470edc935205c9d5b5c5253ff210d6f4471d3 (diff)
downloadmongo-0ab7df179a7329fea4c28049d1ff532010720280.tar.gz
SERVER-35872 reconstruct prepared transactions on rollback, fastcount inaccurate
Diffstat (limited to 'src/mongo/dbtests')
-rw-r--r--src/mongo/dbtests/storage_timestamp_tests.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/dbtests/storage_timestamp_tests.cpp b/src/mongo/dbtests/storage_timestamp_tests.cpp
index 0c452fa1915..3fae5e1949b 100644
--- a/src/mongo/dbtests/storage_timestamp_tests.cpp
+++ b/src/mongo/dbtests/storage_timestamp_tests.cpp
@@ -718,7 +718,7 @@ public:
auto oplogEntry = oplogEntryBuilder.done();
ASSERT_OK(repl::SyncTail::syncApply(
- _opCtx, oplogEntry, repl::OplogApplication::Mode::kSecondary));
+ _opCtx, oplogEntry, repl::OplogApplication::Mode::kSecondary, boost::none));
for (std::uint32_t idx = 0; idx < docsToInsert; ++idx) {
OneOffRead oor(_opCtx, firstInsertTime.addTicks(idx).asTimestamp());