diff options
author | Randolph Tan <randolph@10gen.com> | 2017-07-03 17:49:48 -0400 |
---|---|---|
committer | Randolph Tan <randolph@10gen.com> | 2017-07-12 13:20:42 -0400 |
commit | 1550eb477fcf883e861f63ffc988a6060a2fbfb1 (patch) | |
tree | 2ae92c69ae385f2788ec7ab2fad3aa77e7495ee9 /src/mongo/db/introspect.cpp | |
parent | 1d6008b049e65615b13404f0b877034cfa980220 (diff) | |
download | mongo-1550eb477fcf883e861f63ffc988a6060a2fbfb1.tar.gz |
SERVER-28912 Thread statement id from batched insert command oplog entry
Diffstat (limited to 'src/mongo/db/introspect.cpp')
-rw-r--r-- | src/mongo/db/introspect.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/introspect.cpp b/src/mongo/db/introspect.cpp index f3d6680b242..aa0cb13e2e9 100644 --- a/src/mongo/db/introspect.cpp +++ b/src/mongo/db/introspect.cpp @@ -142,7 +142,8 @@ void profile(OperationContext* opCtx, NetworkOp op) { if (coll) { WriteUnitOfWork wuow(opCtx); OpDebug* const nullOpDebug = nullptr; - coll->insertDocument(opCtx, p, nullOpDebug, false).transitional_ignore(); + coll->insertDocument(opCtx, InsertStatement(p), nullOpDebug, false) + .transitional_ignore(); wuow.commit(); break; |