summaryrefslogtreecommitdiff
path: root/jstests/core/covered_index_sort_2.js
blob: e5dd48b47afba82593124cdf81c0107b80d755ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Simple covered index query test with sort on _id

var coll = db.getCollection("covered_sort_2")
coll.drop()
for (i=0;i<10;i++) {
    coll.insert({_id:i})
}
coll.insert({_id:"1"})
coll.insert({_id:{bar:1}})
coll.insert({_id:null})

// Test no query
var plan = coll.find({}, {_id:1}).sort({_id:-1}).hint({_id:1}).explain()
assert.eq(true, plan.indexOnly, "sort.2.1 - indexOnly should be true on covered query")
assert.eq(0, plan.nscannedObjects, "sort.2.1 - nscannedObjects should be 0 for covered query")

print ('all tests pass')