summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/count_scan.cpp
diff options
context:
space:
mode:
authorMisha Tyulenev <misha@mongodb.com>2015-06-15 17:27:49 -0400
committerMisha Tyulenev <misha@mongodb.com>2015-06-15 17:55:34 -0400
commit67da0d34a17c4707cd70dd23588c5a0b4b1da2c0 (patch)
treec5638508cca3022188977f0f9a198b320680b314 /src/mongo/db/exec/count_scan.cpp
parente0286fd21111f466e86cafb3c7bc0e12203b6fa7 (diff)
downloadmongo-67da0d34a17c4707cd70dd23588c5a0b4b1da2c0.tar.gz
address feedback: remove isTTL and expireAfterSeconds
Diffstat (limited to 'src/mongo/db/exec/count_scan.cpp')
-rw-r--r--src/mongo/db/exec/count_scan.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mongo/db/exec/count_scan.cpp b/src/mongo/db/exec/count_scan.cpp
index 5374305a62c..c002e72e9ca 100644
--- a/src/mongo/db/exec/count_scan.cpp
+++ b/src/mongo/db/exec/count_scan.cpp
@@ -56,8 +56,6 @@ namespace mongo {
_specificStats.isUnique = _params.descriptor->unique();
_specificStats.isSparse = _params.descriptor->isSparse();
_specificStats.isPartial = _params.descriptor->isPartial();
- _specificStats.isTTL = _params.descriptor->isTTL();
- _specificStats.expireAfterSeconds = _params.descriptor->expireAfterSeconds();
_specificStats.indexVersion = _params.descriptor->version();
// endKey must be after startKey in index order since we only do forward scans.