diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mongo/db/commands/create.idl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mongo/db/commands/create.idl b/src/mongo/db/commands/create.idl index 8ab95c40f1f..0a1f8226454 100644 --- a/src/mongo/db/commands/create.idl +++ b/src/mongo/db/commands/create.idl @@ -198,10 +198,13 @@ commands: optional: true stability: stable temp: - description: "DEPRECATED" + description: "Internal field that can be used in the $out aggregation code." type: safeBool optional: true - stability: unstable + # The temp field is an internal field and not documented publicly, but we need to set + # the 'stability' to 'stable' because it can be used in the $out aggregation stage. + # This is due to the limitation of the API strict checking infrastructure. + stability: stable flags: description: "DEPRECATED" type: safeInt64 |