mirror of https://github.com/mongodb/mongo
SERVER-113632 Update expected COLLSCAN & FETCH filter (#43986)
GitOrigin-RevId: e9dd74c88f9963dc897a77d6d25b9389240d5125
This commit is contained in:
parent
fed12cac99
commit
120ee72dd9
|
|
@ -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}},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue