summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/kv_engine.h')
-rw-r--r--src/mongo/db/storage/kv/kv_engine.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/db/storage/kv/kv_engine.h b/src/mongo/db/storage/kv/kv_engine.h
index b9e65bfd24f..2c0e56a0c33 100644
--- a/src/mongo/db/storage/kv/kv_engine.h
+++ b/src/mongo/db/storage/kv/kv_engine.h
@@ -144,6 +144,7 @@ public:
}
virtual Status createSortedDataInterface(OperationContext* opCtx,
+ const CollectionOptions& collOptions,
StringData ident,
const IndexDescriptor* desc) = 0;
@@ -158,11 +159,12 @@ public:
* share a table. Sharing indexes belonging to different databases is forbidden.
*/
virtual Status createGroupedSortedDataInterface(OperationContext* opCtx,
+ const CollectionOptions& collOptions,
StringData ident,
const IndexDescriptor* desc,
KVPrefix prefix) {
invariant(prefix == KVPrefix::kNotPrefixed);
- return createSortedDataInterface(opCtx, ident, desc);
+ return createSortedDataInterface(opCtx, collOptions, ident, desc);
}
virtual int64_t getIdentSize(OperationContext* opCtx, StringData ident) = 0;