summaryrefslogtreecommitdiff
path: root/jstests/aggregation/sources/densify/parse.js
blob: 58154ed47c7fb37750f0a5ddac18ceab234ff8af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * 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");
})();