-
Type:
Task
-
Resolution: Won't Do
-
Priority:
Major - P3
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
-
v4.4
-
None
-
None
-
None
-
None
-
None
-
None
-
None
As part of related ticket SERVER-63208 we changed the behavior of the allowDiskUse() shell helper. It used to be that allowDiskUse() was a no-arguments function which always set allowDiskUse:true on the find command. Now, if an argument is provided, this gets passed through to the server as the value of the allowDiskUse option. In other words, now you can do something like this in the legacy shell:
db.myCollection.find().sort({foo: 1}).allowDiskUse(false);
This confusingly used to result in passing allowDiskUse:true to the server, but now it will pass allowDiskUse:false as you might expect.
The work for this ticket is to backport this part of the change from SERVER-63208 to the 5.0 branch, and possibly to older branches as well.