summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/count_scan.cpp
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2015-08-26 17:22:37 -0400
committerGeert Bosch <geert@mongodb.com>2015-08-28 16:49:06 -0400
commit373952f62531be761c2836a84a937eef2386e14d (patch)
tree6bfb2cb3514cf0895f9c28de5d3911a1ade9109f /src/mongo/db/exec/count_scan.cpp
parentc60f9d3318b3e3cbe8784cd7c3d9871c7a3391c2 (diff)
downloadmongo-373952f62531be761c2836a84a937eef2386e14d.tar.gz
SERVER-19708: Move RecordCursor::seekExact to derived SeekableRecordStore class
Diffstat (limited to 'src/mongo/db/exec/count_scan.cpp')
-rw-r--r--src/mongo/db/exec/count_scan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/count_scan.cpp b/src/mongo/db/exec/count_scan.cpp
index 56b7cf34eee..d4a9638c322 100644
--- a/src/mongo/db/exec/count_scan.cpp
+++ b/src/mongo/db/exec/count_scan.cpp
@@ -121,7 +121,7 @@ bool CountScan::isEOF() {
void CountScan::doSaveState() {
if (_cursor)
- _cursor->savePositioned();
+ _cursor->save();
}
void CountScan::doRestoreState() {