summaryrefslogtreecommitdiff
path: root/jstests/core/index13.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index13.js')
-rw-r--r--jstests/core/index13.js147
1 files changed, 147 insertions, 0 deletions
diff --git a/jstests/core/index13.js b/jstests/core/index13.js
new file mode 100644
index 00000000000..7e317d90d94
--- /dev/null
+++ b/jstests/core/index13.js
@@ -0,0 +1,147 @@
+// Top level match fields within an $elemMatch clause may constrain multiple subfields from a
+// compound multikey index. SERVER-3104
+//
+// Given a multikey index { 'a.b':1, 'a.c':1 } and query { 'a.b':3, 'a.c':3 } only the index field
+// 'a.b' is constrained to the range [3, 3], while the index field 'a.c' is just constrained
+// to be within minkey and maxkey. This implementation ensures that the document
+// { a:[ { b:3 }, { c:3 } ] }, which generates index keys { 'a.b':3, 'a.c':null } and
+// { 'a.b':null and 'a.c':3 } will be retrieved for the query. (See SERVER-958 for more
+// information.)
+//
+// If the query is instead { a:{ $elemMatch:{ b:3, c:3 } } } then the document
+// { a:[ { b:3 }, { c:3 } ] } does not match. Until SERVER-3104 was implemented, the index
+// constraints would be [3,3] on the 'a.b' field and [minkey,maxkey] on the 'a.c' field, the same as
+// for the non $elemMatch query in the previous paragraph. With the SERVER-3104 implementation,
+// constraints on two fields within a $elemMatch parent can both be applied to an index. Due to the
+// SERVER-3104 implementation, the index constraints become [3,3] on the 'a.b' field _and_ [3,3] on
+// the 'a.c' field.
+
+t = db.jstests_index13;
+t.drop();
+
+function assertConsistentResults( query ) {
+ assert.eq( t.find( query ).hint( { $natural:1 } ).sort( { _id:1 } ).toArray(),
+ t.find( query ).hint( index ).sort( { _id:1 } ).toArray() );
+}
+
+function assertResults( query ) {
+ explain = t.find( query ).hint( index ).explain();
+ // printjson( explain ); // debug
+ assertConsistentResults( query );
+}
+
+// Cases with single dotted index fied names.
+index = { 'a.b':1, 'a.c':1 };
+t.ensureIndex( index );
+t.save( { a:[ { b:1 }, { c:1 } ] } );
+t.save( { a:[ { b:1, c:1 } ] } );
+assert.eq( 2, t.count() );
+// Without $elemMatch.
+assertResults( { 'a.b':1, 'a.c':1 } );
+// With $elemMatch.
+assertResults( { a:{ $elemMatch:{ b:1, c:1 } } } );
+
+// Without shared $elemMatch.
+assertResults( { 'a.b':1, a:{ $elemMatch:{ c:1 } } } );
+// Two different $elemMatch expressions.
+assertResults( { $and:[ { a:{ $elemMatch:{ b:1 } } },
+ { a:{ $elemMatch:{ c:1 } } } ] } );
+
+
+// Cases relating to parse order and inclusion of intersected ranges.
+assertResults( { 'a.b':1, a:{ $elemMatch:{ b:{ $gt:0 }, c:1 } } } );
+assertResults( { a:{ $elemMatch:{ b:1, c:1 } }, 'a.b':1 } );
+assertResults( { 'a.c':1, a:{ $elemMatch:{ b:1, c:1 } } } );
+assertResults( { a:{ $elemMatch:{ b:1, c:1 } }, 'a.b':{ $gt:0 } } );
+
+// Cases with $elemMatch on multiple fields.
+t.remove({});
+index = { 'a.b':1, 'a.c':1, 'd.e':1, 'd.f':1 };
+t.ensureIndex( index );
+t.insert( { a:[ { b:1 }, { c:1 } ], d: { e:1, f:1 } } );
+t.insert( { a:[ { b:1, c:1 } ], d: { e:1, f:1 } } );
+t.insert( { a:{ b:1, c:1 }, d:[ { e:1, f:1 } ] } );
+t.insert( { a:{ b:1, c:1 }, d:[ { e:1 }, { f:1 } ] } );
+
+assert.eq( 4, t.count() );
+
+// Without $elemMatch.
+assertResults( { 'a.b':1, 'a.c':1, 'd.e':1, 'd.f':1 } );
+// With $elemMatch.
+assertResults( { a:{ $elemMatch:{ b:1, c:1 } }, 'd': { $elemMatch:{ e:1, f:1 } } } );
+assertResults( { a:{ $elemMatch:{ b:1, c:1 } }, 'd.e': 1, 'd.f' : 1 } );
+assertResults( { 'a.b': 1, 'a.c' : 1, 'd': { $elemMatch:{ e:1, f:1 } } } );
+
+
+// Cases with nested $elemMatch.
+t.remove({})
+index = { 'a.b.c':1, 'a.b.d' :1 };
+t.ensureIndex( index );
+t.insert( { a:[ { b: [ { c : 1, d : 1 } ] } ] } ) ;
+t.insert( { a:[ { b: [ { c : 1 } , { d : 1 } ] } ] } ) ;
+assert.eq( 2, t.count() );
+// Without $elemMatch.
+assertResults( { 'a.b.c':1, 'a.b.d':1 } );
+// With $elemMatch.
+assertResults( { "a" : { $elemMatch : { "b" : { $elemMatch : { c : 1, d : 1 } } } } } );
+
+// Cases with double dotted index field names.
+t.drop();
+index = { 'a.b.x':1, 'a.b.y':1 };
+t.ensureIndex( index );
+t.save( { a:{ b:{ x:1, y:1 } } } );
+t.save( { a:[ { b:{ x:1 } }, { b:{ y:1 } } ] } );
+t.save( { a:[ { b:[ { x:1 }, { y:1 } ] } ] } );
+t.save( { a:[ { b:[ { x:1, y:1 } ] } ] } );
+assert.eq( 4, t.count() );
+
+// No $elemMatch.
+assertResults( { 'a.b.x':1, 'a.b.y':1 } );
+// $elemMatch with dotted children.
+assertResults( { a:{ $elemMatch:{ 'b.x':1, 'b.y':1 } } } );
+// $elemMatch with undotted children.
+assertResults( { 'a.b':{ $elemMatch:{ x:1, y:1 } } } );
+
+// Cases where a field is indexed along with its children.
+t.dropIndexes();
+index = { 'a':1, 'a.b.x':1, 'a.b.y':1 };
+t.ensureIndex( index );
+
+// With $ne.
+assertResults( { a:{ $ne:4 }, 'a.b':{ $elemMatch:{ x:1, y:1 } } } );
+
+// No constraint on a prior parent field.
+assertResults( { 'a.b':{ $elemMatch:{ x:1, y:1 } } } );
+
+// Cases with double dotted index field names branching to different fields at each dot.
+t.drop();
+index = { 'a.b.c':1, 'a.e.f':1, 'a.b.d':1, 'a.e.g':1 }
+t.ensureIndex( index );
+t.save( { a:{ b:{ c:1, d:1 }, e:{ f:1, g:1 } } } );
+t.save( { a:[ { b:{ c:1 }, e:{ f:1 } }, { b:{ d:1 }, e:{ g:1 } } ] } );
+t.save( { a:[ { b:{ c:1 } }, { e:{ f:1 } }, { b:{ d:1 } }, { e:{ g:1 } } ] } );
+t.save( { a:[ { b:[ { c:1 }, { d:1 } ] }, { e:[ { f:1 }, { g:1 } ] } ] } );
+t.save( { a:[ { b:[ { c:[ 1 ] }, { d:[ 1 ] } ] }, { e:[ { f:[ 1 ] }, { g:[ 1 ] } ] } ] } );
+t.save( { a:[ { b:[ { c:1, d:1 } ] }, { e:[ { f:1 }, { g:1 } ] } ] } );
+t.save( { a:[ { b:[ { c:1, d:1 } ] }, { e:[ { f:1, g:1 } ] } ] } );
+assert.eq( 7, t.count() );
+
+// Constraint on a prior cousin field.
+assertResults( { 'a.b':{ $elemMatch:{ c:1, d:1 } },
+ 'a.e':{ $elemMatch:{ f:1, g:1 } } } );
+
+// Different constraint on a prior cousin field.
+assertResults( { 'a.b':{ $elemMatch:{ d:1 } },
+ 'a.e':{ $elemMatch:{ f:1, g:1 } } } );
+
+
+// Cases with double dotted index field names branching to different fields at each dot, and the
+// same field name strings after the second dot.
+t.drop();
+index = { 'a.b.c':1, 'a.e.c':1, 'a.b.d':1, 'a.e.d':1 }
+t.ensureIndex( index );
+t.save( { a:[ { b:[ { c:1, d:1 } ] }, { e:[ { c:1, d:1 } ] } ] } );
+assert.eq( 1, t.count() );
+
+// Constraint on a prior cousin field with the same field names.
+assertResults( { 'a.b':{ $elemMatch:{ c:1, d:1 } }, 'a.e':{ $elemMatch:{ c:1, d:1 } } } );