summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/sbe/vm/vm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/sbe/vm/vm.h')
-rw-r--r--src/mongo/db/exec/sbe/vm/vm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/db/exec/sbe/vm/vm.h b/src/mongo/db/exec/sbe/vm/vm.h
index 46793fb4f0d..02f7146c42f 100644
--- a/src/mongo/db/exec/sbe/vm/vm.h
+++ b/src/mongo/db/exec/sbe/vm/vm.h
@@ -611,6 +611,7 @@ enum class Builtin : uint8_t {
hash,
ftsMatch,
generateSortKey,
+ makeBsonObj,
tsSecond,
tsIncrement,
typeMatch,
@@ -1208,6 +1209,7 @@ private:
std::tuple<bool, value::TypeTags, value::Value> builtinHash(ArityType arity);
std::tuple<bool, value::TypeTags, value::Value> builtinFtsMatch(ArityType arity);
std::tuple<bool, value::TypeTags, value::Value> builtinGenerateSortKey(ArityType arity);
+ std::tuple<bool, value::TypeTags, value::Value> builtinMakeBsonObj(ArityType arity);
std::tuple<bool, value::TypeTags, value::Value> builtinTsSecond(ArityType arity);
std::tuple<bool, value::TypeTags, value::Value> builtinTsIncrement(ArityType arity);
std::tuple<bool, value::TypeTags, value::Value> builtinTypeMatch(ArityType arity);