Files
mongo/jstests/core/query/basic5.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
113 B
JavaScript
Raw Normal View History

let t = db.getCollection("basic5");
2009-01-26 23:28:26 -05:00
t.drop();
t.save({a: 1, b: [1, 2, 3]});
assert.eq(3, t.findOne().b.length);