summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/window_function/spillable_cache_test.cpp
diff options
context:
space:
mode:
authorSophia Tan <sophia_tll@hotmail.com>2023-05-12 19:44:44 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-05-15 23:20:28 +0000
commit6be86d8987dbad1c33160ef1779b598bc7cfa6b4 (patch)
treeb3484e6c70e402ddf66482df828c3b3f221457b3 /src/mongo/db/pipeline/window_function/spillable_cache_test.cpp
parentba0986ac66e3a22d211ad3707ad037fdc10910af (diff)
downloadmongo-6be86d8987dbad1c33160ef1779b598bc7cfa6b4.tar.gz
SERVER-75276 writeConflictRetry should properly be using a NamespaceStringOrUUID instead of a StringData
Diffstat (limited to 'src/mongo/db/pipeline/window_function/spillable_cache_test.cpp')
-rw-r--r--src/mongo/db/pipeline/window_function/spillable_cache_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/pipeline/window_function/spillable_cache_test.cpp b/src/mongo/db/pipeline/window_function/spillable_cache_test.cpp
index 7599842de57..21f40b353c7 100644
--- a/src/mongo/db/pipeline/window_function/spillable_cache_test.cpp
+++ b/src/mongo/db/pipeline/window_function/spillable_cache_test.cpp
@@ -56,7 +56,7 @@ public:
std::vector<Record>* records,
const std::vector<Timestamp>& ts) const override {
- writeConflictRetry(expCtx->opCtx, "MPI::writeRecordsToRecordStore", expCtx->ns.ns(), [&] {
+ writeConflictRetry(expCtx->opCtx, "MPI::writeRecordsToRecordStore", expCtx->ns, [&] {
AutoGetCollection autoColl(expCtx->opCtx, expCtx->ns, MODE_IX);
WriteUnitOfWork wuow(expCtx->opCtx);
auto writeResult = rs->insertRecords(expCtx->opCtx, records, ts);