summaryrefslogtreecommitdiff
path: root/jstests/sorte.js
blob: fee513a298be19fcbd3dee67a516345c7d18f6d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Check that getLastError is clear after a scan and order plan triggers an in memory sort
// exception, but an in order plan continues running.
// SERVER-5016

if ( 0 ) { // SERVER-5016

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

big = new Array( 1000000 ).toString()

for( i = 0; i < 300; ++i ) {
    t.save( { a:0, b:0 } );
}

for( i = 0; i < 40; ++i ) {
    t.save( { a:1, b:1, big:big } );
}

t.ensureIndex( { a:1 } );
t.ensureIndex( { b:1 } );

c = t.find( { a:{ $gte:0 }, b:1 } ).sort( { a:1 } );
c.next();
assert( !db.getLastError() );
count = 1;
count += c.itcount();
assert.eq( 40, count );

}