summaryrefslogtreecommitdiff
path: root/jstests/update_arraymatch6.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/update_arraymatch6.js')
-rw-r--r--jstests/update_arraymatch6.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/jstests/update_arraymatch6.js b/jstests/update_arraymatch6.js
deleted file mode 100644
index 8892e6fcc68..00000000000
--- a/jstests/update_arraymatch6.js
+++ /dev/null
@@ -1,14 +0,0 @@
-t = db.jstests_update_arraymatch6;
-t.drop();
-
-function doTest() {
- t.save( {a: [{id: 1, x: [5,6,7]}, {id: 2, x: [8,9,10]}]} );
- t.update({'a.id': 1}, {$set: {'a.$.x': [1,1,1]}});
- assert.automsg( "!db.getLastError()" );
- assert.eq.automsg( "1", "t.findOne().a[ 0 ].x[ 0 ]" );
-}
-
-doTest();
-t.drop();
-t.ensureIndex( { 'a.id':1 } );
-doTest(); \ No newline at end of file