summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/bson_collection_catalog_entry.h
diff options
context:
space:
mode:
authorLouis Williams <louis.williams@mongodb.com>2021-01-27 10:11:51 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-01-27 20:35:55 +0000
commit7bda8e0a10dd620716b7530b35eac70c75810696 (patch)
treecea72e77fae621e816703486b8492ee962771b66 /src/mongo/db/storage/bson_collection_catalog_entry.h
parentee7a58e7af9fa14cf837a8f066eec784d1a9e2a6 (diff)
downloadmongo-7bda8e0a10dd620716b7530b35eac70c75810696.tar.gz
SERVER-53982 Delete prefixed RecordStore code
Diffstat (limited to 'src/mongo/db/storage/bson_collection_catalog_entry.h')
-rw-r--r--src/mongo/db/storage/bson_collection_catalog_entry.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mongo/db/storage/bson_collection_catalog_entry.h b/src/mongo/db/storage/bson_collection_catalog_entry.h
index 74bdcc2732d..c29e2146074 100644
--- a/src/mongo/db/storage/bson_collection_catalog_entry.h
+++ b/src/mongo/db/storage/bson_collection_catalog_entry.h
@@ -34,7 +34,6 @@
#include "mongo/db/catalog/collection_options.h"
#include "mongo/db/index/multikey_paths.h"
-#include "mongo/db/storage/kv/kv_prefix.h"
namespace mongo {
@@ -73,7 +72,6 @@ public:
BSONObj spec;
bool ready = false;
bool multikey = false;
- KVPrefix prefix = KVPrefix::kNotPrefixed;
bool isBackgroundSecondaryBuild = false;
// If initialized, a two-phase index build is in progress.
@@ -98,12 +96,9 @@ public:
*/
bool eraseIndex(StringData name);
- KVPrefix getMaxPrefix() const;
-
std::string ns;
CollectionOptions options;
std::vector<IndexMetaData> indexes;
- KVPrefix prefix = KVPrefix::kNotPrefixed;
};
};
} // namespace mongo