summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/collection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/catalog/collection.h')
-rw-r--r--src/mongo/db/catalog/collection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/catalog/collection.h b/src/mongo/db/catalog/collection.h
index c6559d0ea4f..509d7cbb615 100644
--- a/src/mongo/db/catalog/collection.h
+++ b/src/mongo/db/catalog/collection.h
@@ -74,7 +74,7 @@ class RecordCursor;
struct CollectionUpdateArgs {
enum class StoreDocOption { None, PreImage, PostImage };
- StmtId stmtId = kUninitializedStmtId;
+ std::vector<StmtId> stmtIds = {kUninitializedStmtId};
// The document before modifiers were applied.
boost::optional<BSONObj> preImageDoc;