summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDianna Hohensee <dianna.hohensee@mongodb.com>2023-02-13 16:37:09 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-02-13 22:20:54 +0000
commitc805b736936839ae0b819fea9effd7692c80fa92 (patch)
treee16c6362a894748959ecc2f4437edeb78bc0255d
parent787d5b1b282455dd1034bdc23ec8249b8080d3a4 (diff)
downloadmongo-c805b736936839ae0b819fea9effd7692c80fa92.tar.gz
SERVER-73893 Add handling to views_all_commands.js for 6.3 multiversion testing that search index cmds were renamed in 7.0
-rw-r--r--jstests/core/views/views_all_commands.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/jstests/core/views/views_all_commands.js b/jstests/core/views/views_all_commands.js
index 68dda25a476..792f2700d96 100644
--- a/jstests/core/views/views_all_commands.js
+++ b/jstests/core/views/views_all_commands.js
@@ -308,6 +308,7 @@ let viewsCommandTests = {
assert.commandWorked(conn.runCommand({dropAllRolesFromDatabase: 1}));
}
},
+ createSearchIndex: {skip: "present in v6.3 but renamed to createSearchIndexes in v7.0"},
createSearchIndexes: {skip: isUnrelated},
createUser: {
command: {createUser: "testuser", pwd: "testpass", roles: []},
@@ -525,6 +526,7 @@ let viewsCommandTests = {
expectFailure: true,
expectedErrorCode: ErrorCodes.NamespaceNotSharded,
},
+ modifySearchIndex: {skip: "present in v6.3 but renamed to updateSearchIndex in v7.0"},
moveChunk: {
command: {moveChunk: "test.view", find: {}, to: "a"},
skipStandalone: true,