diff options
author | Pavi Vetriselvan <pvselvan@umich.edu> | 2019-02-22 14:10:53 -0500 |
---|---|---|
committer | Pavi Vetriselvan <pvselvan@umich.edu> | 2019-02-22 14:11:41 -0500 |
commit | 0ab7df179a7329fea4c28049d1ff532010720280 (patch) | |
tree | 84d4057fc06ee832e41ee17522359f7defa2d362 /src/mongo/dbtests | |
parent | f78470edc935205c9d5b5c5253ff210d6f4471d3 (diff) | |
download | mongo-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.cpp | 2 |
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()); |