summaryrefslogtreecommitdiff
path: root/jstests/core/index7.js
blob: bd7c75b8b0875c6e380a24b6cf2ebbc85061d170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Check that v0 keys are generated for v0 indexes SERVER-3375

t = db.jstests_indexw;
t.drop();

t.save( {a:[]} );
assert.eq( 1, t.count( {a:[]} ) );
t.ensureIndex( {a:1} );
assert.eq( 1, t.count( {a:[]} ) );
t.dropIndexes();

// The count result is incorrect - just checking here that v0 key generation is used.
t.ensureIndex( {a:1}, {v:0} );
// QUERY_MIGRATION: WE GET THIS RIGHT...BY CHANCE?
// assert.eq( 0, t.count( {a:[]} ) );