SERVER-113632 Update expected COLLSCAN & FETCH filter (#43986)

GitOrigin-RevId: e9dd74c88f9963dc897a77d6d25b9389240d5125
This commit is contained in:
Max Verbinnen 2025-11-14 14:22:18 +00:00 committed by MongoDB Bot
parent fed12cac99
commit 120ee72dd9
1 changed files with 2 additions and 14 deletions

View File

@ -186,11 +186,7 @@ async def execute_collection_scans(
expected_stage={ expected_stage={
"COLLSCAN": { "COLLSCAN": {
"direction": dir_text.lower(), "direction": dir_text.lower(),
"filter": { "filter": {"int_uniform_unindexed_0": {"$gt": 0}},
"$and": [
{"int_uniform_unindexed_0": {"$gt": 0}},
]
},
} }
}, },
) )
@ -497,15 +493,7 @@ async def execute_fetches(database: DatabaseInstance, collections: Sequence[Coll
} }
}, },
note="FETCH_W_FILTER", note="FETCH_W_FILTER",
expected_stage={ expected_stage={"FETCH": {"filter": {"int_uniform_unindexed_0": {"$gt": 0}}}},
"FETCH": {
"filter": {
"$and": [
{"int_uniform_unindexed_0": {"$gt": 0}},
]
}
}
},
) )
) )