Files
mongo/jstests/core/fm1.js
2016-03-09 12:18:14 -05:00

11 lines
231 B
JavaScript

t = db.fm1;
t.drop();
t.insert({foo: {bar: 1}});
t.find({}, {foo: 1}).toArray();
t.find({}, {'foo.bar': 1}).toArray();
t.find({}, {'baz': 1}).toArray();
t.find({}, {'baz.qux': 1}).toArray();
t.find({}, {'foo.qux': 1}).toArray();