summaryrefslogtreecommitdiff
path: root/jstests/aggregation/disabled/server5369.js
blob: 6d8e030d71701c3cb99b3cd8d04bfd3302719f67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// https://jira.mongodb.org/browse/SERVER-5369
// make sure excluding a field doesnt cause _id to appear twice

// use the aggregation test db
db = db.getSiblingDB('aggdb');

// empty and populate
db.test.drop();
db.test.save({a: 1, b: 2});

// agg with exclusion than ensure fields are only the two we expect
var f = db.test.aggregate({$project: {a: 0}});
assert.eq(["_id", "b"], Object.keySet(f.toArray()[0]), "server5369 failed");