-
Type:
Task
-
Resolution: Gone away
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
Query Optimization
-
QO 2025-01-20
-
None
-
None
-
None
-
None
-
None
-
None
-
None
Two queries with $redact are causing a segmentation fault in v5.0, but succeeding against master. This is one of the queries:
:sortFull {
aggregate: "fuzzer_coll",
pipeline: [
{
"$match": {
"any": {
"$not": {
"$exists": false
}
}
}
},
{
"$sort": {
"obj.bool": -1,
"obj.obj.obj": -1,
"geoLegacy": -1,
"obj.str": 1,
"_id": 1
}
},
{
"$redact": {
"$cond": {
"if": {
"$toBool": {
"$map": {
"input": "$obj.obj.array",
"in": {
"$mergeObjects": [
{
"obj": {
"str": "Credit Card Account"
},
"num": NumberLong("314159265358979373")
},
"$$ROOT",
{
"k": "Gold Investor",
"v": {
"$ifNull": [
NumberLong("314159265358979393"),
null
]
}
},
{
"str": "SMS overriding Music"
},
{
"$unsetField": {
"field": "obj.obj.obj.obj.obj.any",
"input": {}
}
}
]
}
}
}
},
"then": "$$DESCEND",
"else": "$$KEEP"
}
}
}
],
cursor: {},
maxTimeMS: 30000
}
- split from
-
SERVER-99244 Triage and resolve record and diff failures during corpus generation
-
- Closed
-