summaryrefslogtreecommitdiff
path: root/jstests/update_invalid1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/update_invalid1.js')
-rw-r--r--jstests/update_invalid1.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/jstests/update_invalid1.js b/jstests/update_invalid1.js
new file mode 100644
index 0000000..7c94507
--- /dev/null
+++ b/jstests/update_invalid1.js
@@ -0,0 +1,6 @@
+
+t = db.update_invalid1
+t.drop()
+
+t.update( { _id : 5 } , { $set : { $inc : { x : 5 } } } , true );
+assert.eq( 0 , t.count() , "A1" );