summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/query_request.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/query_request.h')
-rw-r--r--src/mongo/db/query/query_request.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mongo/db/query/query_request.h b/src/mongo/db/query/query_request.h
index 07da6b23f8e..1457480b3dd 100644
--- a/src/mongo/db/query/query_request.h
+++ b/src/mongo/db/query/query_request.h
@@ -429,6 +429,13 @@ public:
_resumeAfter = resumeAfter;
}
+ bool use44SortKeys() const {
+ return _use44SortKeys;
+ }
+
+ void setUse44SortKeys(bool use44SortKeys) {
+ _use44SortKeys = use44SortKeys;
+ }
/**
* Return options as a bit vector.
@@ -567,6 +574,8 @@ private:
// The Timestamp that RecoveryUnit::setTimestampReadSource() should be called with. The optional
// should only ever be engaged when testing commands are enabled.
boost::optional<Timestamp> _internalReadAtClusterTime;
+
+ bool _use44SortKeys = false;
};
} // namespace mongo