diff --git a/jstests/aggregation/sources/match/dotted_numeric_path.js b/jstests/aggregation/sources/match/dotted_numeric_path.js index 86ee090624e..b6e948f75c9 100644 --- a/jstests/aggregation/sources/match/dotted_numeric_path.js +++ b/jstests/aggregation/sources/match/dotted_numeric_path.js @@ -1,8 +1,5 @@ /** * Tests that $match works correctly with dotted numeric path. - * - * TODO SERVER-49852: remove sbe_incompatible tag - * @tags: [sbe_incompatible] */ (function() { "use strict"; diff --git a/jstests/core/array4.js b/jstests/core/array4.js index c43cbb047c0..55604705264 100644 --- a/jstests/core/array4.js +++ b/jstests/core/array4.js @@ -1,9 +1,5 @@ - /** - * TODO SERVER-49852: remove sbe_incompatible tag - * @tags: [ - * sbe_incompatible, - * ] + * Basic test for querying on documents containing arrays. */ t = db.array4; t.drop(); diff --git a/jstests/core/indexu.js b/jstests/core/indexu.js index cb1bf88db87..5610dca1499 100644 --- a/jstests/core/indexu.js +++ b/jstests/core/indexu.js @@ -1,7 +1,5 @@ -// TODO SERVER-49852: remove sbe_incompatible tag // @tags: [ // requires_non_retryable_writes, -// sbe_incompatible, // ] // Test index key generation with duplicate values addressed by array index and diff --git a/jstests/core/regex_embed1.js b/jstests/core/regex_embed1.js index c74ffb4aa32..11d92a6f3dc 100644 --- a/jstests/core/regex_embed1.js +++ b/jstests/core/regex_embed1.js @@ -1,9 +1,3 @@ - -/** - * @tags: [ - * sbe_incompatible, - * ] - */ t = db.regex_embed1; t.drop(); diff --git a/jstests/core/type_array.js b/jstests/core/type_array.js index a10820729a6..136bb5aa2f3 100644 --- a/jstests/core/type_array.js +++ b/jstests/core/type_array.js @@ -1,7 +1,5 @@ -// TODO SERVER-49852: remove sbe_incompatible tag // @tags: [ // requires_non_retryable_writes, -// sbe_incompatible, // ] /** diff --git a/jstests/core/update_arraymatch8.js b/jstests/core/update_arraymatch8.js index aa2e840b255..e3aa91d6422 100644 --- a/jstests/core/update_arraymatch8.js +++ b/jstests/core/update_arraymatch8.js @@ -1,10 +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. -// TODO SERVER-49852: remove sbe_incompatible tag // @tags: [ // assumes_unsharded_collection, -// sbe_incompatible, // ] // Checking for positional array updates with either .$ or .0 at the end diff --git a/jstests/core/wildcard_index_empty_arrays.js b/jstests/core/wildcard_index_empty_arrays.js index d2ff32441e7..b1188594621 100644 --- a/jstests/core/wildcard_index_empty_arrays.js +++ b/jstests/core/wildcard_index_empty_arrays.js @@ -1,8 +1,5 @@ /** * Tests that wildcard indexes will correctly match for empty arrays. - * @tags: [ - * sbe_incompatible, - * ] */ (function() { "use strict"; @@ -43,4 +40,4 @@ assertArrayEq(coll.find({"f.0.g": []}, {_id: 0}).hint(indexWildcard).toArray(), // $** index matches empty array nested within an array. assertArrayEq(coll.find({"b": []}, {_id: 0}).hint(indexWildcard).toArray(), [{a: 2, b: [[]], c: 1, d: 4}]); -})(); \ No newline at end of file +})(); diff --git a/jstests/core/wildcard_index_multikey.js b/jstests/core/wildcard_index_multikey.js index b55565f783e..7182ac3756f 100644 --- a/jstests/core/wildcard_index_multikey.js +++ b/jstests/core/wildcard_index_multikey.js @@ -2,7 +2,6 @@ * Tests that queries using a multikey $** index, return correct results. * @tags: [ * assumes_balancer_off, - * sbe_incompatible, * ] */ (function() {