diff options
Diffstat (limited to 'jstests/sortj.js')
| -rw-r--r-- | jstests/sortj.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/jstests/sortj.js b/jstests/sortj.js new file mode 100644 index 00000000000..7a73829b94e --- /dev/null +++ b/jstests/sortj.js @@ -0,0 +1,17 @@ +// Test an in memory sort memory assertion after a plan has "taken over" in the query optimizer +// cursor. + +t = db.jstests_sortj; +t.drop(); + +t.ensureIndex( { a:1 } ); + +big = new Array( 100000 ).toString(); +for( i = 0; i < 1000; ++i ) { + t.save( { a:1, b:big } ); +} + +assert.throws( function() { + t.find( { a:{ $gte:0 }, c:null } ).sort( { d:1 } ).itcount(); + } ); +t.drop();
\ No newline at end of file |
