|
This project reuses the featureFlagSbeFull feature flag instead of creating its own. We should thus mark all of this project's uses with comments like
// TODO SERVER-80226: Remove use of featureFlagSbeFull by $unwind Pushdown feature.
|
This ticket is to remove the uses of this feature flag by this project, which will enable the feature all the time. This includes removing it from both product and test code (C++ and JavaScript).
C++ code example:
// TODO SERVER-80226: Remove use of featureFlagSbeFull by $unwind Pushdown feature.
|
// (Ignore FCV check): This is intentional because we always want to use this feature when
|
// the feature flag is enabled.
|
if (feature_flags::gFeatureFlagSbeFull.isEnabledAndIgnoreFCVUnsafe()) {
|
JavaScript code example:
// TODO SERVER-80226: Remove use of featureFlagSbeFull by $unwind Pushdown feature.
|
if (checkSBEEnabled(db, ["featureFlagSbeFull"])) {
|
|