0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-54815 Re-enable tests which use match expressions with numeric path components

This commit is contained in:
Ian Boros 2021-03-01 13:19:14 -05:00 committed by Evergreen Agent
parent 38c6aff3fa
commit 91cffa4dd5
8 changed files with 2 additions and 25 deletions

View File

@ -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";

View File

@ -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();

View File

@ -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

View File

@ -1,9 +1,3 @@
/**
* @tags: [
* sbe_incompatible,
* ]
*/
t = db.regex_embed1;
t.drop();

View File

@ -1,7 +1,5 @@
// TODO SERVER-49852: remove sbe_incompatible tag
// @tags: [
// requires_non_retryable_writes,
// sbe_incompatible,
// ]
/**

View File

@ -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

View File

@ -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}]);
})();
})();

View File

@ -2,7 +2,6 @@
* Tests that queries using a multikey $** index, return correct results.
* @tags: [
* assumes_balancer_off,
* sbe_incompatible,
* ]
*/
(function() {