summaryrefslogtreecommitdiff
path: root/src/mongo/db/curop.cpp
diff options
context:
space:
mode:
authorJames Wahlin <james@mongodb.com>2018-06-04 13:43:50 -0400
committerJames Wahlin <james@mongodb.com>2018-06-11 09:25:31 -0400
commit1c21898e28a73f1ab81fe1fa3d0e185d4ab916a8 (patch)
tree9e5588fc17b446c624d5328cb29c2a61a6fadd54 /src/mongo/db/curop.cpp
parent0dd1fc7ddde2a489558f5328dce5125bddfb9e4d (diff)
downloadmongo-1c21898e28a73f1ab81fe1fa3d0e185d4ab916a8.tar.gz
SERVER-35044 Remove maxScan query option
Diffstat (limited to 'src/mongo/db/curop.cpp')
-rw-r--r--src/mongo/db/curop.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/mongo/db/curop.cpp b/src/mongo/db/curop.cpp
index 157edf6ba65..61716105e69 100644
--- a/src/mongo/db/curop.cpp
+++ b/src/mongo/db/curop.cpp
@@ -59,15 +59,7 @@ namespace {
// OP_QUERY find. The $orderby field is omitted because "orderby" (no dollar sign) is also allowed,
// and this requires special handling.
const std::vector<const char*> kDollarQueryModifiers = {
- "$hint",
- "$comment",
- "$maxScan",
- "$max",
- "$min",
- "$returnKey",
- "$showDiskLoc",
- "$snapshot",
- "$maxTimeMS",
+ "$hint", "$comment", "$max", "$min", "$returnKey", "$showDiskLoc", "$snapshot", "$maxTimeMS",
};
} // namespace