diff options
Diffstat (limited to 'src/mongo/db/catalog/collection_options.h')
-rw-r--r-- | src/mongo/db/catalog/collection_options.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mongo/db/catalog/collection_options.h b/src/mongo/db/catalog/collection_options.h index 09d53a5774b..b8128e1a487 100644 --- a/src/mongo/db/catalog/collection_options.h +++ b/src/mongo/db/catalog/collection_options.h @@ -44,8 +44,6 @@ namespace mongo { /** * Updates fields based on BSON document from client. - * If document contains a 'storageEngine' field, ensures that 'storageEngine' - * contains a single field of Object type. */ Status parse( const BSONObj& obj ); @@ -86,7 +84,7 @@ namespace mongo { bool temp; // Storage engine collection options. Always owned or empty. - BSONObj storageEngine; + BSONObj storage; }; } |