summaryrefslogtreecommitdiff
path: root/src/mongo/db/transaction/transaction_participant_test.cpp
diff options
context:
space:
mode:
authorJordi Serra Torrens <jordi.serra-torrens@mongodb.com>2022-09-28 10:11:50 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-11-04 18:50:12 +0000
commit53973727e253d8b797bc0b2a734326d4e3fdad6d (patch)
treed4cf0a1effcc98ab265b44317194658c975775b7 /src/mongo/db/transaction/transaction_participant_test.cpp
parent05cf56be4fdfa33c88d47dfb48f95a60c9cc7e09 (diff)
downloadmongo-53973727e253d8b797bc0b2a734326d4e3fdad6d.tar.gz
SERVER-70043 Thread-through CollectionPtr into the onDelete OpObserver
Co-authored-by: Daniel Gómez Ferro <daniel.gomezferro@mongodb.com>
Diffstat (limited to 'src/mongo/db/transaction/transaction_participant_test.cpp')
-rw-r--r--src/mongo/db/transaction/transaction_participant_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/transaction/transaction_participant_test.cpp b/src/mongo/db/transaction/transaction_participant_test.cpp
index 971b81d2a91..ec1ce45ec07 100644
--- a/src/mongo/db/transaction/transaction_participant_test.cpp
+++ b/src/mongo/db/transaction/transaction_participant_test.cpp
@@ -4516,7 +4516,8 @@ TEST_F(TxnParticipantTest, OldestActiveTransactionTimestamp) {
}
if (bson["startOpTime"]["ts"].timestamp() == ts) {
- coll->deleteDocument(opCtx(), kUninitializedStmtId, record->id, nullptr);
+ collection_internal::deleteDocument(
+ opCtx(), coll, kUninitializedStmtId, record->id, nullptr);
wuow.commit();
return;
}