summaryrefslogtreecommitdiff
path: root/jstests/core/ref2.js
blob: 6b284b1f59f2e2c55812a052b2911c743e112dec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// @tags: [requires_fastcount]

t = db.ref2;
t.drop();

a = {
    $ref: "foo",
    $id: 1
};
b = {
    $ref: "foo",
    $id: 2
};

t.save({name: "a", r: a});
t.save({name: "b", r: b});

assert.eq(2, t.find().count(), "A");
assert.eq(1, t.find({r: a}).count(), "B");
assert.eq(1, t.find({r: b}).count(), "C");