summaryrefslogtreecommitdiff
path: root/jstests/aggregation
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2016-09-22 11:30:53 -0400
committerTess Avitabile <tess.avitabile@mongodb.com>2016-09-30 16:34:23 -0400
commit2abb5f41dfd894ca3ca1e9ca6eee6b980ec41a28 (patch)
treef55444212d76586ea980b2c1e689775d6308e2aa /jstests/aggregation
parentd4b173439ae08f1c0c71191eb93fd1164245c351 (diff)
downloadmongo-2abb5f41dfd894ca3ca1e9ca6eee6b980ec41a28.tar.gz
SERVER-25430 Create a sharded collections passthrough of aggregation suite
Diffstat (limited to 'jstests/aggregation')
-rw-r--r--jstests/aggregation/bugs/server25473.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/jstests/aggregation/bugs/server25473.js b/jstests/aggregation/bugs/server25473.js
deleted file mode 100644
index 33685b3d081..00000000000
--- a/jstests/aggregation/bugs/server25473.js
+++ /dev/null
@@ -1,16 +0,0 @@
-/**
- * This test was designed to stress special logic in the mongos for when the database has sharding
- * enabled, but the collection is not sharded.
- *
- * TODO SERVER-25430 This test can be removed once we have a passthrough to stress this logic.
- */
-(function() {
- 'use strict';
- var st = new ShardingTest({mongos: 1, shards: 1});
-
- st.s.adminCommand({enableSharding: 'test'});
- st.s.getDB('test').runCommand(
- {aggregate: 'article', pipeline: [{$project: {all: {$min: 10}}}]});
-
- st.stop();
-}());