summaryrefslogtreecommitdiff
path: root/jstests/core/find7.js
blob: ed18dcbb0ff0abb2c9fc3bfcdb2055219e77f11f (plain)
1
2
3
4
5
6
7
8
9
10
t = db.find7;
t.drop();

x = {
    "_id": {"d": 3649, "w": "signed"},
    "u": {"3649": 5}
};
t.insert(x);
assert.eq(x, t.findOne(), "A1");
assert.eq(x, t.findOne({_id: x._id}), "A2");