summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_collection_catalog_entry.h
diff options
context:
space:
mode:
authorXiangyu Yao <xiangyu.yao@mongodb.com>2019-06-14 22:27:55 -0400
committerXiangyu Yao <xiangyu.yao@mongodb.com>2019-06-20 10:47:10 -0400
commit144f8191888b400ffc774401972ac8dff1c9d87b (patch)
tree347165c1066ef189bd159351e8e7b35579bd03b7 /src/mongo/db/storage/kv/kv_collection_catalog_entry.h
parent55e76198b1e41b5dbd5868d2ed8b914da29f0f29 (diff)
downloadmongo-144f8191888b400ffc774401972ac8dff1c9d87b.tar.gz
SERVER-40478 Merge StorageEngine class with KVStorageEngine
Diffstat (limited to 'src/mongo/db/storage/kv/kv_collection_catalog_entry.h')
-rw-r--r--src/mongo/db/storage/kv/kv_collection_catalog_entry.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/storage/kv/kv_collection_catalog_entry.h b/src/mongo/db/storage/kv/kv_collection_catalog_entry.h
index cd8643bbcb7..644a00f8943 100644
--- a/src/mongo/db/storage/kv/kv_collection_catalog_entry.h
+++ b/src/mongo/db/storage/kv/kv_collection_catalog_entry.h
@@ -39,11 +39,11 @@
namespace mongo {
class KVCatalog;
-class KVStorageEngineInterface;
+class StorageEngineInterface;
class KVCollectionCatalogEntry final : public BSONCollectionCatalogEntry {
public:
- KVCollectionCatalogEntry(KVStorageEngineInterface* engine,
+ KVCollectionCatalogEntry(StorageEngineInterface* engine,
KVCatalog* catalog,
StringData ns,
StringData ident,
@@ -123,8 +123,8 @@ private:
class AddIndexChange;
class RemoveIndexChange;
- KVStorageEngineInterface* const _engine; // not owned
- KVCatalog* _catalog; // not owned
+ StorageEngineInterface* const _engine; // not owned
+ KVCatalog* _catalog; // not owned
std::string _ident;
std::unique_ptr<RecordStore> _recordStore; // owned
};