summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/collection_scan.cpp
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-07-24 15:16:48 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-07-26 10:53:22 -0400
commit86defa9d193f34275af2c4f3c783dffb046182ff (patch)
tree1a57517f940cecc40d99030191a411d7f32283e7 /src/mongo/db/exec/collection_scan.cpp
parent8235ad20a6169b8713ffba991afcd50519e1345b (diff)
downloadmongo-86defa9d193f34275af2c4f3c783dffb046182ff.tar.gz
SERVER-28752 Get rid of BatchedInsertRequest::getIndexTargetingNS
In preparation for removing the Batched Insert/Update/Delete Request parser classes.
Diffstat (limited to 'src/mongo/db/exec/collection_scan.cpp')
-rw-r--r--src/mongo/db/exec/collection_scan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/collection_scan.cpp b/src/mongo/db/exec/collection_scan.cpp
index 987f7c28513..c05dde68cea 100644
--- a/src/mongo/db/exec/collection_scan.cpp
+++ b/src/mongo/db/exec/collection_scan.cpp
@@ -147,7 +147,7 @@ PlanStage::StageState CollectionScan::doWork(WorkingSetID* out) {
record = _cursor->next();
}
- } catch (const WriteConflictException& wce) {
+ } catch (const WriteConflictException&) {
// Leave us in a state to try again next time.
if (needToMakeCursor)
_cursor.reset();