summaryrefslogtreecommitdiff
path: root/jstests/fts2.js
blob: 297f585061fe691390c9700b251e3e8329e3d7a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

load( "jstests/libs/fts.js" );

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

t.save( { _id : 1 , x : "az b x" , y : "c d m" , z : 1 } );
t.save( { _id : 2 , x : "c d y" , y : "az b n" , z : 2 } );

t.ensureIndex( { x : "text" } , { weights : { x : 10 , y : 1 } } );

assert.eq( [1,2] , queryIDS( t , "az" ) , "A1" );
assert.eq( [2,1] , queryIDS( t , "d" ) , "A2" );

assert.eq( [1] , queryIDS( t , "x" ) , "A3" );
assert.eq( [2] , queryIDS( t , "y" ) , "A4" );

assert.eq( [1] , queryIDS( t , "az" , { z : 1 } ) , "B1" );
assert.eq( [1] , queryIDS( t , "d" , { z : 1 } ) , "B2" );

assert.eq( 2 , lastCommadResult.stats.nscannedObjects , "B3" );
assert.eq( 2 , lastCommadResult.stats.nscanned , "B4" );