summaryrefslogtreecommitdiff
path: root/jstests/aggregation
diff options
context:
space:
mode:
authorsamontea <merciers.merciers@gmail.com>2020-12-15 17:35:37 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-12-15 18:44:38 +0000
commitc425bdcf1862d642460211fcf450664233a9e6d0 (patch)
tree5af6a186357c9d267c06bb919b835b8bba8ae4e5 /jstests/aggregation
parent7ee29eedb7029d4e3563057b6329678f9102996a (diff)
downloadmongo-c425bdcf1862d642460211fcf450664233a9e6d0.tar.gz
SERVER-53268 Complete TODO listed in SERVER-35479
Diffstat (limited to 'jstests/aggregation')
-rw-r--r--jstests/aggregation/sources/collStats/count.js2
-rw-r--r--jstests/aggregation/sources/collStats/query_exec_stats.js2
2 files changed, 1 insertions, 3 deletions
diff --git a/jstests/aggregation/sources/collStats/count.js b/jstests/aggregation/sources/collStats/count.js
index 561031a711e..334f42766e4 100644
--- a/jstests/aggregation/sources/collStats/count.js
+++ b/jstests/aggregation/sources/collStats/count.js
@@ -60,8 +60,6 @@ coll.drop();
assertErrorCode(coll, pipeline, ErrorCodes.NamespaceNotFound);
// Test that we error when the database does not exist.
-// TODO SERVER-35479 When running against a mongos, a non-existent database will cause all
-// aggregations to return an empty result set.
assert.commandWorked(testDB.dropDatabase());
assertErrorCode(coll, pipeline, ErrorCodes.NamespaceNotFound);
}());
diff --git a/jstests/aggregation/sources/collStats/query_exec_stats.js b/jstests/aggregation/sources/collStats/query_exec_stats.js
index 572ec8338e3..a5b5ee687de 100644
--- a/jstests/aggregation/sources/collStats/query_exec_stats.js
+++ b/jstests/aggregation/sources/collStats/query_exec_stats.js
@@ -69,7 +69,7 @@ pipeline = [{$collStats: {queryExecStats: {}}}];
assertErrorCode(coll, pipeline, ErrorCodes.NamespaceNotFound);
// Test that we error when the database does not exist.
-// TODO SERVER-35479 When running against a mongos, a non-existent database will cause all
+// TODO SERVER-53083 When running against a mongos, a non-existent database will cause all
// aggregations to return an empty result set.
assert.commandWorked(testDB.dropDatabase());
if (FixtureHelpers.isMongos(testDB)) {