summaryrefslogtreecommitdiff
path: root/jstests/core/timeseries/timeseries_project.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/timeseries/timeseries_project.js')
-rw-r--r--jstests/core/timeseries/timeseries_project.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/jstests/core/timeseries/timeseries_project.js b/jstests/core/timeseries/timeseries_project.js
index b9ba914130a..b5d615ebde5 100644
--- a/jstests/core/timeseries/timeseries_project.js
+++ b/jstests/core/timeseries/timeseries_project.js
@@ -4,6 +4,7 @@
* @tags: [
* # We need a timeseries collection.
* requires_timeseries,
+ * requires_fcv_62,
* ]
*/
(function() {
@@ -111,5 +112,10 @@ pipeline = [{$addFields: {a: "$x", b: "$a"}}, {$project: {_id: 0}}];
tsDoc = tsColl.aggregate(pipeline).toArray();
regDoc = regColl.aggregate(pipeline).toArray();
assert.docEq(tsDoc, regDoc);
+
+pipeline = [{$project: {a: 1, _id: 0}}, {$project: {newMeta: "$x"}}];
+tsDoc = tsColl.aggregate(pipeline).toArray();
+regDoc = regColl.aggregate(pipeline).toArray();
+assert.docEq(tsDoc, regDoc);
})();
})();