summaryrefslogtreecommitdiff
path: root/jstests/core/explain_multi_plan.js
diff options
context:
space:
mode:
authorEddie Louie <eddie.louie@mongodb.com>2017-03-23 14:07:50 -0400
committerEddie Louie <eddie.louie@mongodb.com>2017-03-23 14:07:50 -0400
commit9fc1ecd711851cccee04fe14caf88db0c6523090 (patch)
tree9fe1653635dd12da022fff31555ab237af1cc4e0 /jstests/core/explain_multi_plan.js
parentfb956b3b0a48c9b8376575c6adb971a4e0593292 (diff)
downloadmongo-9fc1ecd711851cccee04fe14caf88db0c6523090.tar.gz
SERVER-26315 Override DBCollection.prototype.drop to re-shard collections that are dropped
This reverts commit fb956b3b0a48c9b8376575c6adb971a4e0593292.
Diffstat (limited to 'jstests/core/explain_multi_plan.js')
-rw-r--r--jstests/core/explain_multi_plan.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/jstests/core/explain_multi_plan.js b/jstests/core/explain_multi_plan.js
index 693237d9edc..a41a4f0e67b 100644
--- a/jstests/core/explain_multi_plan.js
+++ b/jstests/core/explain_multi_plan.js
@@ -1,3 +1,8 @@
+// Cannot implicitly shard accessed collections because of following errmsg: A single
+// update/delete on a sharded collection must contain an exact match on _id or contain the shard
+// key.
+// @tags: [assumes_unsharded_collection]
+
/**
* Tests running explain on a variety of explainable commands (find, update, remove, etc.) when
* there are multiple plans available. This is a regression test for SERVER-20849 and SERVER-21376.