summaryrefslogtreecommitdiff
path: root/jstests/orn.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2011-08-17 21:03:43 -0700
committerAaron <aaron@10gen.com>2011-08-17 21:03:54 -0700
commit294340b750905c6377d97be500336999d1fc46df (patch)
tree7489032c21b24528bb5ed19dbfabc06039573db4 /jstests/orn.js
parent41847975454d3466744717049da08eb28e465936 (diff)
downloadmongo-294340b750905c6377d97be500336999d1fc46df.tar.gz
SERVER-3555 assert when or query yield fails to prevent potential invalid memory access
Diffstat (limited to 'jstests/orn.js')
-rw-r--r--jstests/orn.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/jstests/orn.js b/jstests/orn.js
new file mode 100644
index 00000000000..c900bb8669f
--- /dev/null
+++ b/jstests/orn.js
@@ -0,0 +1,22 @@
+// Test dropping during an $or distinct yield SERVER-3555
+
+t = db.jstests_orn;
+t.drop();
+
+clauses = [];
+for( i = 0; i < 10; ++i ) {
+ clauses.push( {a:{$lte:(i+1)*5000/10},i:49999} );
+ clauses.push( {b:{$lte:(i+1)*5000/10},i:49999} );
+}
+
+p = startParallelShell( 'for( i = 0; i < 15; ++i ) { sleep( 1000 ); db.jstests_orn.drop() }' );
+for( j = 0; j < 5; ++j ) {
+ for( i = 0; i < 5000; ++i ) {
+ t.save( {a:i,i:i} );
+ t.save( {b:i,i:i} );
+ }
+ t.ensureIndex( {a:1} );
+ t.ensureIndex( {b:1} );
+ t.distinct('a',{$or:clauses});
+}
+p();