summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/storage_engine_impl.cpp
diff options
context:
space:
mode:
authorGregory Noma <gregory.noma@gmail.com>2020-06-02 09:39:17 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-06-02 13:57:36 +0000
commit6bb2da10a396bfe5bb222dda843d9feb79958d6c (patch)
treef9cfa9cf6c933572ddd7c54263b7738aa295693e /src/mongo/db/storage/storage_engine_impl.cpp
parent3b7bc03a8f8b964769ff708674163b67ddd1a450 (diff)
downloadmongo-6bb2da10a396bfe5bb222dda843d9feb79958d6c.tar.gz
Revert "SERVER-48413 Add evergreen builder for resumable index builds"
This reverts commit 29e2a6737ef643bf663579c5c7b378a5c383c9b8.
Diffstat (limited to 'src/mongo/db/storage/storage_engine_impl.cpp')
-rw-r--r--src/mongo/db/storage/storage_engine_impl.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mongo/db/storage/storage_engine_impl.cpp b/src/mongo/db/storage/storage_engine_impl.cpp
index bd0318aa798..80c9a181a07 100644
--- a/src/mongo/db/storage/storage_engine_impl.cpp
+++ b/src/mongo/db/storage/storage_engine_impl.cpp
@@ -46,7 +46,6 @@
#include "mongo/db/storage/kv/kv_engine.h"
#include "mongo/db/storage/kv/temporary_kv_record_store.h"
#include "mongo/db/storage/storage_repair_observer.h"
-#include "mongo/db/storage/two_phase_index_build_knobs_gen.h"
#include "mongo/db/unclean_shutdown.h"
#include "mongo/logv2/log.h"
#include "mongo/stdx/unordered_map.h"
@@ -860,13 +859,6 @@ bool StorageEngineImpl::supportsPendingDrops() const {
return supportsReadConcernMajority();
}
-bool StorageEngineImpl::supportsResumableIndexBuilds() const {
- return enableResumableIndexBuilds && supportsReadConcernMajority() && !isEphemeral() &&
- serverGlobalParams.featureCompatibility.isVersionInitialized() &&
- serverGlobalParams.featureCompatibility.getVersion() ==
- ServerGlobalParams::FeatureCompatibility::Version::kFullyUpgradedTo46;
-}
-
void StorageEngineImpl::clearDropPendingState() {
_dropPendingIdentReaper.clearDropPendingState();
}