0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/or8.js

12 lines
250 B
JavaScript
Raw Normal View History

// missing collection
t = db.jstests_or8;
t.drop();
t.find({ "$or": [ { "PropA": { "$lt": "b" } }, { "PropA": { "$lt": "b", "$gt": "a" } } ] }).toArray();
// empty $in
//t.ensureIndex( {a:1} );
//t.find({ $or: [ { a: {$in:[]} } ] } ).toArray();