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 a5197d17437..e4590a79c71 100644
--- a/src/mongo/db/exec/sbe/vm/vm.h
+++ b/src/mongo/db/exec/sbe/vm/vm.h
@@ -149,6 +149,7 @@ struct Instruction {
isString,
isNumber,
isBinData,
+ isDate,
typeMatch,
function,
@@ -259,6 +260,7 @@ public:
void appendIsString();
void appendIsNumber();
void appendIsBinData();
+ void appendIsDate();
void appendTypeMatch(uint32_t typeMask);
void appendFunction(Builtin f, uint8_t arity);
void appendJump(int jumpOffset);