summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands_test_example.idl
diff options
context:
space:
mode:
authorSamy Lanka <samy.lanka@mongodb.com>2021-01-21 04:37:02 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-01-22 06:21:59 +0000
commitc1ca936dcf465e8eb96476b74a944419a791da12 (patch)
tree818c27c7808a59f9c3baac65f4704f86f9fcbad5 /src/mongo/db/commands_test_example.idl
parentfd90f095a72984fb7095f72092015614372ebea0 (diff)
downloadmongo-c1ca936dcf465e8eb96476b74a944419a791da12.tar.gz
SERVER-52857 Require apiVersion field for all IDL commands
Diffstat (limited to 'src/mongo/db/commands_test_example.idl')
-rw-r--r--src/mongo/db/commands_test_example.idl3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/db/commands_test_example.idl b/src/mongo/db/commands_test_example.idl
index 651c1c2cf2b..441c0c7694d 100644
--- a/src/mongo/db/commands_test_example.idl
+++ b/src/mongo/db/commands_test_example.idl
@@ -37,18 +37,21 @@ commands:
description: "increment an integer (TypedCommand example)"
command_name: exampleIncrement
namespace: concatenate_with_db
+ api_version: ""
fields:
i: int
exampleVoid:
description: "no return, just side effects"
command_name: exampleVoid
namespace: concatenate_with_db
+ api_version: ""
fields:
i: int
exampleMinimal:
description: "like exampleIncrement, but use MinimalInvocationBase"
command_name: exampleMinimal
namespace: concatenate_with_db
+ api_version: ""
fields:
i: int