summaryrefslogtreecommitdiff
path: root/jstests/regexa.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2011-06-20 11:29:03 -0700
committerAaron <aaron@10gen.com>2011-06-20 11:29:03 -0700
commit5160c0eba1aafc80074dc5b4196d3c8ddab3dc44 (patch)
treeacc276e93519760ba30e744b4e66b23a1bca2dc2 /jstests/regexa.js
parentfed4db4c72a3e7615e81ec98219cc395556b3d70 (diff)
downloadmongo-5160c0eba1aafc80074dc5b4196d3c8ddab3dc44.tar.gz
SERVER-3298 add test
Diffstat (limited to 'jstests/regexa.js')
-rw-r--r--jstests/regexa.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/jstests/regexa.js b/jstests/regexa.js
new file mode 100644
index 00000000000..e9644627548
--- /dev/null
+++ b/jstests/regexa.js
@@ -0,0 +1,19 @@
+// Test simple regex optimization with a regex | (bar) present - SERVER-3298
+
+t = db.jstests_regexa;
+t.drop();
+
+function check() {
+ assert.eq( 1, t.count( {a:/^(z|.)/} ) );
+ assert.eq( 1, t.count( {a:/^z|./} ) );
+ assert.eq( 0, t.count( {a:/^z(z|.)/} ) );
+ assert.eq( 1, t.count( {a:/^zz|./} ) );
+}
+
+t.save( {a:'a'} );
+
+check();
+t.ensureIndex( {a:1} );
+if ( 0 ) { // SERVER-3298
+check();
+} \ No newline at end of file