summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/query_planner_params.h
diff options
context:
space:
mode:
authorMatthew Russotto <matthew.russotto@10gen.com>2017-09-19 10:18:39 -0400
committerMatthew Russotto <matthew.russotto@10gen.com>2017-09-19 10:22:32 -0400
commit84dde9f345606f8794eafc1b244902f8f6846d85 (patch)
treea4acfefdb799d776e00bd7fec9bd9f2b0762c127 /src/mongo/db/query/query_planner_params.h
parent3eedd24bb8448e9a491a03d8eaa21999d4ea9405 (diff)
downloadmongo-84dde9f345606f8794eafc1b244902f8f6846d85.tar.gz
SERVER-29929 Report highest observed cluster time from change stream on each shard
Diffstat (limited to 'src/mongo/db/query/query_planner_params.h')
-rw-r--r--src/mongo/db/query/query_planner_params.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/db/query/query_planner_params.h b/src/mongo/db/query/query_planner_params.h
index de47dbf6abd..80df2b0c3ba 100644
--- a/src/mongo/db/query/query_planner_params.h
+++ b/src/mongo/db/query/query_planner_params.h
@@ -98,6 +98,9 @@ struct QueryPlannerParams {
// Set this to generate covered whole IXSCAN plans.
GENERATE_COVERED_IXSCANS = 1 << 11,
+
+ // Set this to track the most recent timestamp seen by this cursor while scanning the oplog.
+ TRACK_LATEST_OPLOG_TS = 1 << 12,
};
// See Options enum above.