summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeil Shweky <neilshweky@gmail.com>2021-10-29 18:05:13 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-10-29 18:44:32 +0000
commit9a45a31425255e6a93f187e884257e4eabd3c2f9 (patch)
tree4cad7ec3a8f931b60bfd9c6cfdc629116812d70f
parent29f37c55c677a17aa162146fa9c376df4d82da84 (diff)
downloadmongo-9a45a31425255e6a93f187e884257e4eabd3c2f9.tar.gz
SERVER-60206 add sortArray feature flag
-rw-r--r--src/mongo/db/query/query_feature_flags.idl25
1 files changed, 15 insertions, 10 deletions
diff --git a/src/mongo/db/query/query_feature_flags.idl b/src/mongo/db/query/query_feature_flags.idl
index 2c9a7aee4d5..e0d18461492 100644
--- a/src/mongo/db/query/query_feature_flags.idl
+++ b/src/mongo/db/query/query_feature_flags.idl
@@ -6,21 +6,21 @@
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# Server Side Public License for more details.
#
# You should have received a copy of the Server Side Public License
-# along with this program. If not, see
+# along with this program. If not, see
# <http://www.mongodb.com/licensing/server-side-public-license>.
#
-# As a special exception, the copyright holders give permission to link the
+# As a special exception, the copyright holders give permission to link the
# code of portions of this program with the OpenSSL library under certain
# conditions as described in each individual source file and distribute
-# linked combinations including the program with the OpenSSL library. You
-# must comply with the Server Side Public License in all respects for
+# linked combinations including the program with the OpenSSL library. You
+# must comply with the Server Side Public License in all respects for
# all of the code used other than as permitted herein. If you modify file(s)
-# with this exception, you may extend this exception to your version of the
-# file(s), but you are not obligated to do so. If you do not wish to do so,
+# with this exception, you may extend this exception to your version of the
+# file(s), but you are not obligated to do so. If you do not wish to do so,
# delete this exception statement from your version. If you delete this
# exception statement from all source files in the program, then also delete
# it in the license file.
@@ -40,7 +40,7 @@ feature_flags:
description: "Feature flag for allowing sharding a Time Series collection"
cpp_varname: gFeatureFlagShardedTimeSeries
default: true
- version: 5.1
+ version: 5.1
featureFlagShardedTimeSeriesUpdateDelete:
description: "Feature flag for allowing update and delete operations on a sharded Time Series collection"
@@ -57,10 +57,10 @@ feature_flags:
description: "Feature flag for allowing use of topN family of accumulators"
cpp_varname: gFeatureFlagExactTopNAccumulator
default: false
-
+
featureFlagShardedLookup:
description: "Feature flag for allowing $lookup/$graphLookup into a sharded collection"
- cpp_varname: gFeatureFlagShardedLookup
+ cpp_varname: gFeatureFlagShardedLookup
default: true
version: 5.1
@@ -86,3 +86,8 @@ feature_flags:
to parse. It will be removed when PM-1935 is complete
cpp_varname: gFlagFill
default: false
+
+ featureFlagSortArray:
+ description: "Feature flag for allowing use of the $sortArray aggregation expression"
+ cpp_varname: gFeatureFlagSortArray
+ default: false