summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/query_stage_ixscan.cpp
diff options
context:
space:
mode:
authorRandolph Tan <randolph@10gen.com>2017-07-03 17:49:48 -0400
committerRandolph Tan <randolph@10gen.com>2017-07-12 13:20:42 -0400
commit1550eb477fcf883e861f63ffc988a6060a2fbfb1 (patch)
tree2ae92c69ae385f2788ec7ab2fad3aa77e7495ee9 /src/mongo/dbtests/query_stage_ixscan.cpp
parent1d6008b049e65615b13404f0b877034cfa980220 (diff)
downloadmongo-1550eb477fcf883e861f63ffc988a6060a2fbfb1.tar.gz
SERVER-28912 Thread statement id from batched insert command oplog entry
Diffstat (limited to 'src/mongo/dbtests/query_stage_ixscan.cpp')
-rw-r--r--src/mongo/dbtests/query_stage_ixscan.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/dbtests/query_stage_ixscan.cpp b/src/mongo/dbtests/query_stage_ixscan.cpp
index 79c5b112bf3..2c81fbb357a 100644
--- a/src/mongo/dbtests/query_stage_ixscan.cpp
+++ b/src/mongo/dbtests/query_stage_ixscan.cpp
@@ -69,7 +69,7 @@ public:
void insert(const BSONObj& doc) {
WriteUnitOfWork wunit(&_opCtx);
OpDebug* const nullOpDebug = nullptr;
- ASSERT_OK(_coll->insertDocument(&_opCtx, doc, nullOpDebug, false));
+ ASSERT_OK(_coll->insertDocument(&_opCtx, InsertStatement(doc), nullOpDebug, false));
wunit.commit();
}