diff options
author | samontea <merciers.merciers@gmail.com> | 2020-12-15 17:35:37 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-12-15 18:44:38 +0000 |
commit | c425bdcf1862d642460211fcf450664233a9e6d0 (patch) | |
tree | 5af6a186357c9d267c06bb919b835b8bba8ae4e5 | |
parent | 7ee29eedb7029d4e3563057b6329678f9102996a (diff) | |
download | mongo-c425bdcf1862d642460211fcf450664233a9e6d0.tar.gz |
SERVER-53268 Complete TODO listed in SERVER-35479
-rw-r--r-- | jstests/aggregation/sources/collStats/count.js | 2 | ||||
-rw-r--r-- | jstests/aggregation/sources/collStats/query_exec_stats.js | 2 |
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)) { |