summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/sbe/stages/filter.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/sbe/stages/filter.h')
-rw-r--r--src/mongo/db/exec/sbe/stages/filter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/sbe/stages/filter.h b/src/mongo/db/exec/sbe/stages/filter.h
index 66760acf2f5..a3ee0355146 100644
--- a/src/mongo/db/exec/sbe/stages/filter.h
+++ b/src/mongo/db/exec/sbe/stages/filter.h
@@ -138,7 +138,7 @@ public:
if (includeDebugInfo) {
BSONObjBuilder bob;
- bob.appendNumber("numTested", _specificStats.numTested);
+ bob.appendNumber("numTested", static_cast<long long>(_specificStats.numTested));
bob.append("filter", DebugPrinter{}.print(_filter->debugPrint()));
ret->debugInfo = bob.obj();
}