summaryrefslogtreecommitdiff
path: root/jstests/core/geo_multikey1.js
blob: ce55609db25fb395f9e27abe9eaefdeda9f06370 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Multikey geo index tests with parallel arrays.

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

locArr = [];
arr = [];
for( i = 0; i < 10; ++i ) {
    locArr.push( [i,i+1] );
    arr.push( i );
}
t.save( {loc:locArr,a:arr,b:arr,c:arr} );

// Parallel arrays are allowed for geo indexes.
assert.writeOK(t.ensureIndex( {loc:'2d',a:1,b:1,c:1} ));

// Parallel arrays are not allowed for normal indexes.
assert.writeError(t.ensureIndex( {loc:1,a:1,b:1,c:1} ));