Files
mongo/jstests/core/pull_or.js
Siyuan Zhou 3660343e0b SERVER-12127 migrate js tests to jscore suite when not related to writes
Migrate js tests starting from j-z.
Include SERVER-12920 Update use_power_of_2.js

Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
2014-03-03 22:54:10 -05:00

22 lines
601 B
JavaScript

t = db.pull_or;
t.drop();
doc = { _id : 1 , a : { b : [ { x : 1 },
{ y : 'y' },
{ x : 2 },
{ z : 'z' } ] } };
t.insert( doc );
t.update({}, { $pull : { 'a.b' : { 'y' : { $exists : true } } } } );
assert.eq( [ { x : 1 }, { x : 2 }, { z : 'z' } ], t.findOne().a.b );
t.drop();
t.insert( doc );
t.update({}, { $pull : { 'a.b' : { $or : [ { 'y' : { $exists : true } },
{ 'z' : { $exists : true } } ] } } } );
assert.eq( [ { x : 1 }, { x : 2 } ], t.findOne().a.b );