summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/plan_summary_stats.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/query/plan_summary_stats.h')
-rw-r--r--src/mongo/db/query/plan_summary_stats.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mongo/db/query/plan_summary_stats.h b/src/mongo/db/query/plan_summary_stats.h
index a0ded1f2755..35deb4d83c0 100644
--- a/src/mongo/db/query/plan_summary_stats.h
+++ b/src/mongo/db/query/plan_summary_stats.h
@@ -50,14 +50,6 @@ struct PlanSummaryStats {
// The number of milliseconds spent inside the root stage's work() method.
long long executionTimeMillis = 0;
- // The number of collection scans that occur during execution. Note that more than one
- // collection scan may happen during execution (e.g. for $lookup execution).
- long long collectionScans = 0;
-
- // The number of collection scans that occur during execution which are nontailable. Note that
- // more than one collection scan may happen during execution (e.g. for $lookup execution).
- long long collectionScansNonTailable = 0;
-
// Did this plan use an in-memory sort stage?
bool hasSortStage = false;