summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/server_write_concern_metrics.js
diff options
context:
space:
mode:
authorMihai Andrei <mihai.andrei@10gen.com>2022-06-30 20:38:44 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-06-30 21:39:25 +0000
commit17f49ab8b16a6f45371771d8c152cfbf4ed186af (patch)
tree882643f79f42b6b0267cbc870eb03b135f231e1c /jstests/noPassthrough/server_write_concern_metrics.js
parent69ce17c6b02c009fc2d0502c6761f8a3e2e541ee (diff)
downloadmongo-17f49ab8b16a6f45371771d8c152cfbf4ed186af.tar.gz
SERVER-50301 Delete code which handles $v:1 update oplog entries
Diffstat (limited to 'jstests/noPassthrough/server_write_concern_metrics.js')
-rw-r--r--jstests/noPassthrough/server_write_concern_metrics.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/jstests/noPassthrough/server_write_concern_metrics.js b/jstests/noPassthrough/server_write_concern_metrics.js
index 61b18ff1b1f..c0b646d7b0d 100644
--- a/jstests/noPassthrough/server_write_concern_metrics.js
+++ b/jstests/noPassthrough/server_write_concern_metrics.js
@@ -292,11 +292,13 @@ for (const isPSASet of [true, false]) {
// application, as testWriteConcernMetrics will run them multiple times.
testWriteConcernMetrics(
{applyOps: [{op: "i", ns: testColl.getFullName(), o: {_id: 0}}]}, "insert", 1, isPSASet);
- testWriteConcernMetrics(
- {applyOps: [{op: "u", ns: testColl.getFullName(), o2: {_id: 0}, o: {$set: {a: 1}}}]},
- "update",
- 1,
- isPSASet);
+ testWriteConcernMetrics({
+ applyOps:
+ [{op: "u", ns: testColl.getFullName(), o2: {_id: 0}, o: {$v: 2, diff: {u: {a: 1}}}}]
+ },
+ "update",
+ 1,
+ isPSASet);
testWriteConcernMetrics({applyOps: [{op: "d", ns: testColl.getFullName(), o: {_id: 0}}]},
"delete",
1,