Files
mongo/jstests/aggregation/sources/densify/parse.js

19 lines
301 B
JavaScript

/**
* Test the syntax of $densify.
* @tags: [
* # Needed as $densify is a 51 feature.
* requires_fcv_51,
* ]
*/
(function() {
"use strict";
load("jstests/aggregation/sources/densify/libs/parse_util.js");
const coll = db.densify_parse;
coll.drop();
parseUtil(db, coll, "$densify");
})();