summaryrefslogtreecommitdiff
path: root/src/mongo/db/SConscript
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-10-12 18:17:31 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2017-10-17 09:25:40 -0400
commitd77201bbde61bf9e19eca81d73bbcb8bd85c757c (patch)
tree74d3ab587646f620aadd8c6ad92730a17a32d907 /src/mongo/db/SConscript
parent5eb95437e55acb07680c72a8a14a2f485bce94d7 (diff)
downloadmongo-d77201bbde61bf9e19eca81d73bbcb8bd85c757c.tar.gz
SERVER-30532 Remove IDL-generated parser for the findAndModify result
Instead only use a generator, but not parser. Also adds lastErrorObject.upserted to the findAndModify retry result.
Diffstat (limited to 'src/mongo/db/SConscript')
-rw-r--r--src/mongo/db/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/SConscript b/src/mongo/db/SConscript
index 5c358768737..7448f3373da 100644
--- a/src/mongo/db/SConscript
+++ b/src/mongo/db/SConscript
@@ -1606,6 +1606,7 @@ env.Library(
target='write_ops',
source=[
'ops/delete.cpp',
+ 'ops/find_and_modify_result.cpp',
'ops/insert.cpp',
'ops/parsed_delete.cpp',
'ops/parsed_update.cpp',
@@ -1617,7 +1618,6 @@ env.Library(
'session_catalog.cpp',
'session_txn_record.cpp',
'transaction_history_iterator.cpp',
- env.Idlc('commands/find_and_modify.idl')[0],
env.Idlc('ops/single_write_result.idl')[0],
env.Idlc('session_txn_record.idl')[0],
],