summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Storch <david.storch@mongodb.com>2020-05-19 14:26:03 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-05-19 19:09:45 +0000
commit956b43ff33c8c3c3c98cc0dc18fd439b54d29394 (patch)
treec43e6816cb9aa7c46f7d7e51b8b020f6a6ccf206
parent64906095f4a590a34e1f22042aea2836721f7bbe (diff)
downloadmongo-956b43ff33c8c3c3c98cc0dc18fd439b54d29394.tar.gz
SERVER-47801 Blacklist fts_find_and_modify.js from multiversion passthroughs
-rw-r--r--jstests/core/fts_find_and_modify.js11
1 files changed, 8 insertions, 3 deletions
diff --git a/jstests/core/fts_find_and_modify.js b/jstests/core/fts_find_and_modify.js
index 5fe0183fff7..8725337ba26 100644
--- a/jstests/core/fts_find_and_modify.js
+++ b/jstests/core/fts_find_and_modify.js
@@ -1,9 +1,14 @@
/**
* Test that findAndModify works with $text search predicates.
*
- * Cannot run when collections are implicitly sharded, since findAndModify requires the query
- * predicate to contain the shard key.
- * @tags: [assumes_unsharded_collection]
+ * @tags: [
+ * # Cannot run when collections are implicitly sharded, since findAndModify requires the query
+ * # predicate to contain the shard key.
+ * assumes_unsharded_collection,
+ * # We chose not to backport the bug fix for $text + findAndModify to the 4.4 branch, so all
+ * # nodes must be at least binary version 4.6.
+ * requires_fcv_46,
+ * ]
*/
(function() {
"use strict";