diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2017-07-24 15:16:48 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2017-07-26 10:53:22 -0400 |
commit | 86defa9d193f34275af2c4f3c783dffb046182ff (patch) | |
tree | 1a57517f940cecc40d99030191a411d7f32283e7 /src/mongo/db/exec/collection_scan.cpp | |
parent | 8235ad20a6169b8713ffba991afcd50519e1345b (diff) | |
download | mongo-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.cpp | 2 |
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(); |