summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2020-09-10 16:31:27 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-09-11 17:41:18 +0000
commitd735d9cf707ff0ea45ec61710e139137a105b821 (patch)
treeb45913c1c7fe664419bf4c55e2dd5ae07539f889
parent8dfebbb8bcc197c19108daebbc46224b0ad846bf (diff)
downloadmongo-d735d9cf707ff0ea45ec61710e139137a105b821.tar.gz
SERVER-50704 Create exportCollection command
-rw-r--r--jstests/core/views/views_all_commands.js1
-rw-r--r--jstests/replsets/db_reads_while_recovering_all_commands.js1
-rw-r--r--jstests/sharding/read_write_concern_defaults_application.js1
3 files changed, 3 insertions, 0 deletions
diff --git a/jstests/core/views/views_all_commands.js b/jstests/core/views/views_all_commands.js
index 04c4a34eabd..94f56a70373 100644
--- a/jstests/core/views/views_all_commands.js
+++ b/jstests/core/views/views_all_commands.js
@@ -338,6 +338,7 @@ let viewsCommandTests = {
hello: {skip: isUnrelated},
hostInfo: {skip: isUnrelated},
httpClientRequest: {skip: isAnInternalCommand},
+ exportCollection: {skip: isUnrelated},
importCollection: {skip: isUnrelated},
insert: {command: {insert: "view", documents: [{x: 1}]}, expectFailure: true},
internalRenameIfOptionsAndIndexesMatch: {skip: isAnInternalCommand},
diff --git a/jstests/replsets/db_reads_while_recovering_all_commands.js b/jstests/replsets/db_reads_while_recovering_all_commands.js
index a5b3f9d3ab0..92c6647296f 100644
--- a/jstests/replsets/db_reads_while_recovering_all_commands.js
+++ b/jstests/replsets/db_reads_while_recovering_all_commands.js
@@ -192,6 +192,7 @@ const allCommands = {
hello: {skip: isNotAUserDataRead},
hostInfo: {skip: isNotAUserDataRead},
httpClientRequest: {skip: isNotAUserDataRead},
+ exportCollection: {skip: isNotAUserDataRead},
importCollection: {skip: isNotAUserDataRead},
insert: {skip: isPrimaryOnly},
internalRenameIfOptionsAndIndexesMatch: {skip: isAnInternalCommand},
diff --git a/jstests/sharding/read_write_concern_defaults_application.js b/jstests/sharding/read_write_concern_defaults_application.js
index 1fd7146d32f..93a683c7492 100644
--- a/jstests/sharding/read_write_concern_defaults_application.js
+++ b/jstests/sharding/read_write_concern_defaults_application.js
@@ -459,6 +459,7 @@ let testCases = {
hello: {skip: "does not accept read or write concern"},
hostInfo: {skip: "does not accept read or write concern"},
httpClientRequest: {skip: "does not accept read or write concern"},
+ exportCollection: {skip: "internal command"},
importCollection: {skip: "internal command"},
insert: {
setUp: function(conn) {